From 93ec0846bdbb89909a4ad157824ae5ece9241e46 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Watenberg Date: Tue, 14 Apr 2026 12:12:54 +0200 Subject: [PATCH 1/2] ci: update GitHub Actions to Node 24 runtime --- .github/workflows/build.yaml | 6 +++--- .github/workflows/codeql.yml | 2 +- .github/workflows/main.yaml | 16 ++++++++-------- .github/workflows/trivy.yaml | 2 +- 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 5218fa36..a0f9c0dc 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -21,13 +21,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Set up Docker Buildk - uses: docker/setup-buildx-action@v3 + uses: docker/setup-buildx-action@v4 - name: Login to ghcr - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ github.repository_owner }} diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index a105a20b..011ae3e3 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -38,7 +38,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index e486f5fb..b9cf9a72 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -21,9 +21,9 @@ jobs: - tests-server steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: '3.10' cache: pip @@ -36,7 +36,7 @@ jobs: run: pip install tox - run: tox -e ${{ matrix.test }} - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v5.1.2 + uses: codecov/codecov-action@v6.1.2 with: token: ${{ secrets.CODECOV_TOKEN }} slug: ${{ github.repository }} @@ -58,9 +58,9 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: '3.10' cache: pip @@ -70,7 +70,7 @@ jobs: run: pip install tox - run: tox -e ${{ matrix.test }} -- ${{ matrix.class }} - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v5.1.2 + uses: codecov/codecov-action@v6.1.2 with: token: ${{ secrets.CODECOV_TOKEN }} slug: ${{ github.repository }} @@ -80,9 +80,9 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: '3.10' cache: pip diff --git a/.github/workflows/trivy.yaml b/.github/workflows/trivy.yaml index 53aa402c..75a5dd2a 100644 --- a/.github/workflows/trivy.yaml +++ b/.github/workflows/trivy.yaml @@ -30,7 +30,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ env.REF }} From 69c2617e48a32bc51c852178692c97fe72f893f2 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Watenberg Date: Tue, 14 Apr 2026 13:47:07 +0200 Subject: [PATCH 2/2] =?UTF-8?q?ci:=20also=20upgrade=20docker/build-push-ac?= =?UTF-8?q?tion@v6=E2=86=92v7,=20metadata-action@v5=E2=86=92v6,=20codeql@v?= =?UTF-8?q?3=E2=86=92v4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yaml | 2 +- .github/workflows/codeql.yml | 6 +++--- .github/workflows/trivy.yaml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index a0f9c0dc..d77acb5d 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -34,7 +34,7 @@ jobs: password: ${{ secrets.GITHUB_TOKEN }} - name: Build and push - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: . file: ./Dockerfile diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 011ae3e3..7036a06e 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -42,7 +42,7 @@ jobs: # 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 }} # If you wish to specify custom queries, you can do so here or in a config file. @@ -55,7 +55,7 @@ jobs: # Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild - uses: github/codeql-action/autobuild@v3 + uses: github/codeql-action/autobuild@v4 # â„šī¸ Command-line programs to run using the OS shell. # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun @@ -68,6 +68,6 @@ jobs: # ./location_of_script_within_repo/buildscript.sh - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 + uses: github/codeql-action/analyze@v4 with: category: "/language:${{matrix.language}}" diff --git a/.github/workflows/trivy.yaml b/.github/workflows/trivy.yaml index 75a5dd2a..3a20d18a 100644 --- a/.github/workflows/trivy.yaml +++ b/.github/workflows/trivy.yaml @@ -42,7 +42,7 @@ jobs: output: 'trivy-results.sarif' - name: Upload Trivy scan results to GitHub Security tab - uses: github/codeql-action/upload-sarif@v3 + uses: github/codeql-action/upload-sarif@v4 with: sarif_file: 'trivy-results.sarif' ref: '${{ env.REF }}'