From 100952d0322e565cc93eac95aae1a15a6829d613 Mon Sep 17 00:00:00 2001 From: German Service Network Date: Sat, 13 Dec 2025 16:49:11 +0100 Subject: [PATCH] ci: Update github action version --- .github/workflows/codeql-analysis.yml | 8 ++++---- .github/workflows/docker-deployment.yml | 4 ++-- .github/workflows/test.yml | 8 ++++---- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 61a2b09..9216ef0 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -35,11 +35,11 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + 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 }} # If you wish to specify custom queries, you can do so here or in a config file. @@ -50,7 +50,7 @@ jobs: # Autobuild attempts to build any compiled languages (C/C++, C#, 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. # 📚 https://git.io/JvXDl @@ -64,4 +64,4 @@ jobs: # make release - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v3 + uses: github/codeql-action/analyze@v4 diff --git a/.github/workflows/docker-deployment.yml b/.github/workflows/docker-deployment.yml index 2405a59..a357926 100644 --- a/.github/workflows/docker-deployment.yml +++ b/.github/workflows/docker-deployment.yml @@ -22,7 +22,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Login Github Container Redistry uses: docker/login-action@v3 @@ -53,7 +53,7 @@ jobs: target: "" - name: Install cosign - uses: sigstore/cosign-installer@v3 + uses: sigstore/cosign-installer@v4 - name: Sign image with Cosign run: cosign sign --yes ${{ env.REGISTRY }}/${{ github.repository }}@${{ steps.build.outputs.digest }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3f5de45..ae52923 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ jobs: os: [ubuntu-22.04, ubuntu-24.04] steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v6 - name: Install dependencies run: | @@ -45,7 +45,7 @@ jobs: runs-on: macos-latest steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v6 - name: Install dependencies run: | @@ -89,7 +89,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v6 - name: Install dependencies run: | @@ -102,7 +102,7 @@ jobs: ci/build-4-compile.sh ci/test-tarball.sh - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v6 with: name: dist-${{ github.sha }} path: fping-*.tar.gz -- 2.43.0