diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 05f47a2..f79263e 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -32,15 +32,15 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v3 + uses: github/codeql-action/init@v4 with: languages: ${{ matrix.language }} - name: Autobuild - uses: github/codeql-action/autobuild@v3 + uses: github/codeql-action/autobuild@v4 - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 + uses: github/codeql-action/analyze@v4 diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 1e61be1..f83eb49 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: # we need a full checkout to be able use git describe. # see https://github.com/actions/checkout/issues/1471 @@ -23,10 +23,10 @@ jobs: fetch-tags: true - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 + uses: docker/setup-buildx-action@v4 - name: Login to GitHub Container Registry - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ github.repository_owner }} @@ -34,7 +34,7 @@ jobs: - name: Extract metadata (tags, labels) for GUI Docker id: meta_gui - uses: docker/metadata-action@v5 + uses: docker/metadata-action@v6 with: images: ghcr.io/openconext/openconext-stats/stats-gui flavor: | @@ -47,7 +47,7 @@ jobs: - name: Extract metadata (tags, labels) for Server Docker id: meta_server - uses: docker/metadata-action@v5 + uses: docker/metadata-action@v6 with: images: ghcr.io/openconext/openconext-stats/stats-server flavor: | @@ -64,7 +64,7 @@ jobs: git log -1 | tee ./server/api/git.info - name: Build and push the stats gui image - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: . file: docker/Dockerfile.frontend @@ -74,7 +74,7 @@ jobs: labels: ${{ steps.meta_gui.outputs.labels }} - name: Build and push the stats server image - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: . file: docker/Dockerfile.server diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 945dd3f..b761c14 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -41,13 +41,13 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Check out repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} cache: 'pip' @@ -78,7 +78,7 @@ jobs: timeout-minutes: 20 - name: Upload coverage to Codecov - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v6 with: token: ${{ secrets.CODECOV_TOKEN }} if: success() @@ -95,14 +95,14 @@ jobs: sudo apt -y install curl - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Get yarn cache directory path id: yarn-cache-dir-path run: | echo "DIR=$(yarn cache dir)" >> $GITHUB_OUTPUT - - uses: actions/cache@v4 + - uses: actions/cache@v5 id: yarn-cache with: path: ${{ steps.yarn-cache-dir-path.outputs.DIR }} @@ -111,7 +111,7 @@ jobs: ${{ runner.os }}-yarn- - name: Use Node.js 20 - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: "20.11.1" cache: "yarn"