diff --git a/.github/workflows/_release_python.yml b/.github/workflows/_release_python.yml index f1cd24d55e..ffca49a149 100644 --- a/.github/workflows/_release_python.yml +++ b/.github/workflows/_release_python.yml @@ -31,7 +31,7 @@ jobs: with: repo-token: ${{ secrets.GITHUB_TOKEN }} - name: Set up cargo cache - uses: actions/cache@v3 + uses: actions/cache@v6 continue-on-error: false with: path: | @@ -169,7 +169,7 @@ jobs: with: repo-token: ${{ secrets.GITHUB_TOKEN }} - name: Set up cargo cache - uses: actions/cache@v3 + uses: actions/cache@v6 continue-on-error: false with: path: | diff --git a/.github/workflows/code_coverage.yml b/.github/workflows/code_coverage.yml index 46cb324490..f9f04a8c42 100644 --- a/.github/workflows/code_coverage.yml +++ b/.github/workflows/code_coverage.yml @@ -23,14 +23,14 @@ with: ref: ${{ github.head_ref }} - name: Cache sccache - uses: actions/cache@v3 + uses: actions/cache@v6 with: path: /home/runner/.cache/sccache key: codecov-${{ runner.os }}-sccache-${{ hashFiles('**/Cargo.lock') }} restore-keys: | codecov-${{ runner.os }}-sccache- - name: Set up cargo cache - uses: actions/cache@v3 + uses: actions/cache@v6 continue-on-error: false with: path: | diff --git a/.github/workflows/release_bump_versions.yml b/.github/workflows/release_bump_versions.yml index e65774eade..ac5466d52f 100644 --- a/.github/workflows/release_bump_versions.yml +++ b/.github/workflows/release_bump_versions.yml @@ -36,7 +36,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Set up cargo cache - uses: actions/cache@v3 + uses: actions/cache@v6 continue-on-error: false with: path: | diff --git a/.github/workflows/test_ui.yml b/.github/workflows/test_ui.yml index f35b4cdced..f9243ea227 100644 --- a/.github/workflows/test_ui.yml +++ b/.github/workflows/test_ui.yml @@ -74,7 +74,7 @@ jobs: esac - name: Cache playwright browsers id: pw-cache - uses: actions/cache@v4 + uses: actions/cache@v6 with: path: ${{ steps.pw-cache-dir.outputs.dir }} key: playwright-${{ runner.os }}-${{ matrix.browser }}-${{ hashFiles('ui-tests/package-lock.json') }}