diff --git a/.github/workflows/benchmarks.yml b/.github/workflows/benchmarks.yml index 57154de..5e28d26 100644 --- a/.github/workflows/benchmarks.yml +++ b/.github/workflows/benchmarks.yml @@ -24,7 +24,7 @@ jobs: egress-policy: audit - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Log toolchain versions run: rustup --version && rustc --version && cargo --version @@ -34,7 +34,7 @@ jobs: run: cargo bench --bench benchmark -- --output-format bencher | tee ../bench-result.txt - name: Download previous benchmark data - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ./cache key: benchmark-${{ runner.os }}-${{ github.run_id }} diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index bb70e23..4ff0784 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -29,7 +29,7 @@ jobs: egress-policy: audit - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Build the Docker image uses: docker/build-push-action@v7 diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 42b9cce..043fe72 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -50,7 +50,7 @@ jobs: env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ github.event_name == 'pull_request_target' && github.event.pull_request.head.sha || github.sha }} diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 8948651..0acf390 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -28,9 +28,9 @@ jobs: egress-policy: audit - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Restore cached dependencies - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 id: cache-restore with: path: | @@ -52,7 +52,7 @@ jobs: uses: ilammy/setup-nasm@v1 - name: Install Go (macOS) if: runner.os == 'macOS' - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version: 'stable' - name: Install Cargo binaries @@ -68,7 +68,7 @@ jobs: - name: Code Coverage run: cargo llvm-cov --all-features --workspace --exclude integration-tests --codecov --output-path ./codecov.json - name: Publish Code Coverage - uses: codecov/codecov-action@v6 + uses: codecov/codecov-action@v7 with: files: ./codecov.json fail_ci_if_error: true @@ -78,7 +78,7 @@ jobs: - name: Clippy run: cargo clippy --all-targets --all-features - name: Cache dependencies - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 if: steps.cache-restore.outputs.cache-hit != 'true' with: path: |