diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 3d2ebd4..8594696 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -49,7 +49,7 @@ jobs: ref: ${{ matrix.commit }} persist-credentials: false - name: Cache base ref build - uses: actions/cache@v5.0.5 + uses: actions/cache@v6.1.0 id: cache with: key: bin-cache-${{ hashFiles('cpp-linter/src/**', 'Cargo.toml', 'Cargo.lock', 'cpp-linter/Cargo.toml') }} diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index 5bf336a..7828665 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -38,7 +38,7 @@ jobs: persist-credentials: false - run: rustup update --no-self-update - name: Cache .cargo locked resources - uses: actions/cache@v5.0.5 + uses: actions/cache@v6.1.0 with: path: ~/.cargo key: ${{ runner.os }}-docs-cargo-${{ hashFiles('Cargo.lock') }} @@ -56,7 +56,7 @@ jobs: with: persist-credentials: false - name: Cache .cargo locked resources - uses: actions/cache/restore@v5.0.5 + uses: actions/cache/restore@v6.1.0 with: path: ~/.cargo key: ${{ runner.os }}-docs-cargo-${{ hashFiles('Cargo.lock') }} @@ -92,7 +92,7 @@ jobs: persist-credentials: false - run: rustup update --no-self-update - name: Cache .cargo locked resources - uses: actions/cache/restore@v5.0.5 + uses: actions/cache/restore@v6.1.0 with: path: ~/.cargo key: ${{ runner.os }}-docs-cargo-${{ hashFiles('Cargo.lock') }} diff --git a/.github/workflows/bump-n-release.yml b/.github/workflows/bump-n-release.yml index 5adacc6..1825109 100644 --- a/.github/workflows/bump-n-release.yml +++ b/.github/workflows/bump-n-release.yml @@ -53,7 +53,7 @@ jobs: persist-credentials: true # needed for `git push` - name: Set up Python if: inputs.package == 'cpp-linter-py' - uses: actions/setup-python@v6.2.0 + uses: actions/setup-python@v6.3.0 with: python-version: 3.x - name: Install Node.js diff --git a/.github/workflows/node-js-packaging.yml b/.github/workflows/node-js-packaging.yml index 260ac61..4e16cd1 100644 --- a/.github/workflows/node-js-packaging.yml +++ b/.github/workflows/node-js-packaging.yml @@ -94,7 +94,7 @@ jobs: rustup update stable --no-self-update rustup target add ${{ matrix.settings.target }} - name: Cache cargo - uses: actions/cache@v5.0.5 # zizmor: ignore[cache-poisoning] + uses: actions/cache@v6.1.0 # zizmor: ignore[cache-poisoning] with: path: | ~/.cargo/registry/index/ @@ -151,7 +151,7 @@ jobs: with: persist-credentials: false - name: setup FreeBSD VM - uses: cross-platform-actions/action@be3d7e9ff5c8770b9c51b1a8c8c5446e1cad7cf9 # v1.2.0 + uses: cross-platform-actions/action@5ea7e8e4677bd726033a10b094ba1c5762b15dee # v1.3.0 env: DEBUG: napi:* RUSTUP_IO_THREADS: 1 diff --git a/.github/workflows/pre-commit-hooks.yml b/.github/workflows/pre-commit-hooks.yml index 6f401d1..afbc70a 100644 --- a/.github/workflows/pre-commit-hooks.yml +++ b/.github/workflows/pre-commit-hooks.yml @@ -27,7 +27,7 @@ jobs: persist-credentials: false - run: rustup update - name: Cache .cargo locked resources - uses: actions/cache@v5.0.5 + uses: actions/cache@v6.1.0 with: path: ~/.cargo key: ${{ runner.os }}-cargo-${{ hashFiles('Cargo.lock') }} diff --git a/.github/workflows/python-packaging.yml b/.github/workflows/python-packaging.yml index 07205f5..3af59d8 100644 --- a/.github/workflows/python-packaging.yml +++ b/.github/workflows/python-packaging.yml @@ -73,7 +73,7 @@ jobs: - uses: actions/checkout@v7.0.0 with: persist-credentials: false - - uses: actions/setup-python@v6.2.0 + - uses: actions/setup-python@v6.3.0 with: python-version: '3.x' - name: Restore build script seed @@ -111,7 +111,7 @@ jobs: - uses: actions/checkout@v7.0.0 with: persist-credentials: false - - uses: actions/setup-python@v6.2.0 + - uses: actions/setup-python@v6.3.0 with: python-version: '3.x' architecture: ${{ matrix.platform.target }} @@ -147,7 +147,7 @@ jobs: - uses: actions/checkout@v7.0.0 with: persist-credentials: false - - uses: actions/setup-python@v6.2.0 + - uses: actions/setup-python@v6.3.0 with: python-version: '3.x' - name: Restore build script seed @@ -173,7 +173,7 @@ jobs: - uses: actions/checkout@v7.0.0 with: persist-credentials: false - - uses: actions/setup-python@v6.2.0 + - uses: actions/setup-python@v6.3.0 with: python-version: 3.x - name: Build sdist @@ -201,7 +201,7 @@ jobs: merge-multiple: true - name: Setup Python if: ${{ !startsWith(github.ref, 'refs/tags/cpp-linter-py/v') }} - uses: actions/setup-python@v6.2.0 + uses: actions/setup-python@v6.3.0 with: python-version: 3.x - name: Check distributions diff --git a/.github/workflows/run-dev-tests.yml b/.github/workflows/run-dev-tests.yml index 2a95bbc..7a0b279 100644 --- a/.github/workflows/run-dev-tests.yml +++ b/.github/workflows/run-dev-tests.yml @@ -71,7 +71,7 @@ jobs: env: GITHUB_TOKEN: ${{ github.token }} - - uses: actions/setup-python@v6.2.0 + - uses: actions/setup-python@v6.3.0 with: python-version: 3.x @@ -90,7 +90,7 @@ jobs: run: choco install ninja - name: Cache .cargo locked resources - uses: actions/cache@v5.0.5 + uses: actions/cache@v6.1.0 with: path: ~/.cargo key: ${{ runner.os }}-tests-cargo-${{ hashFiles('Cargo.lock') }}