diff --git a/.github/workflows/cifuzz.yml b/.github/workflows/cifuzz.yml index 3c2d41d4..90c37a97 100644 --- a/.github/workflows/cifuzz.yml +++ b/.github/workflows/cifuzz.yml @@ -30,7 +30,7 @@ jobs: output-sarif: true - name: Upload Crash - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 if: failure() && steps.build.outcome == 'success' with: name: artifacts @@ -38,7 +38,7 @@ jobs: - name: Upload Sarif if: always() && steps.build.outcome == 'success' - uses: github/codeql-action/upload-sarif@v3 + uses: github/codeql-action/upload-sarif@v4 with: # Path to SARIF file relative to the root of the repository sarif_file: cifuzz-sarif/results.sarif diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index 59ac58df..973aa760 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -16,7 +16,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set up Go 1.20+ uses: actions/setup-go@v6 @@ -27,7 +27,7 @@ jobs: - run: go version - name: golangci-lint - uses: golangci/golangci-lint-action@v8 + uses: golangci/golangci-lint-action@v9 with: version: v2.4.0 args: --timeout=5m diff --git a/.github/workflows/staticAnalysis.yml b/.github/workflows/staticAnalysis.yml index 98512c80..0a0b4fec 100644 --- a/.github/workflows/staticAnalysis.yml +++ b/.github/workflows/staticAnalysis.yml @@ -11,7 +11,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set up Go 1.20+ uses: actions/setup-go@v6 diff --git a/.github/workflows/test-for-fork.yml b/.github/workflows/test-for-fork.yml index 91acb224..54143d8b 100644 --- a/.github/workflows/test-for-fork.yml +++ b/.github/workflows/test-for-fork.yml @@ -24,7 +24,7 @@ jobs: # Checks-out repository under $GITHUB_WORKSPACE - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 # Build everything - name: Run a build diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e870607c..9c6b3595 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -33,7 +33,7 @@ jobs: # Checks-out repository under $GITHUB_WORKSPACE with tags and history (needed by "SonarCloud Scan" step) - name: Full checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 # Full clone for SonarCloud @@ -60,7 +60,7 @@ jobs: shell: bash - name: Upload coverage and report files - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: ${{ hashFiles('./outputs') || 'none' }} path: ./outputs @@ -73,12 +73,12 @@ jobs: runs-on: ubuntu-latest steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis - name: Download artifacts - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: path: ./outputs @@ -96,7 +96,7 @@ jobs: directory: .tmp/ - name: SonarQube Scan - uses: SonarSource/sonarqube-scan-action@v5 + uses: SonarSource/sonarqube-scan-action@v6 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} @@ -119,7 +119,7 @@ jobs: - run: go version - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Run a build run: go build ./...