diff --git a/.github/workflows/generate_documentation.yml b/.github/workflows/generate_documentation.yml index f4db80344df..335013de91b 100644 --- a/.github/workflows/generate_documentation.yml +++ b/.github/workflows/generate_documentation.yml @@ -15,7 +15,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Setup cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/SpacemanDMM key: ${{ runner.os }}-spacemandmm-${{ secrets.CACHE_PURGE_KEY }} diff --git a/.github/workflows/run_linters.yml b/.github/workflows/run_linters.yml index e22b5d8bee8..71ad5ec515e 100644 --- a/.github/workflows/run_linters.yml +++ b/.github/workflows/run_linters.yml @@ -11,7 +11,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Restore SpacemanDMM cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/SpacemanDMM key: ${{ runner.os }}-spacemandmm-${{ hashFiles('dependencies.sh') }} @@ -22,21 +22,21 @@ jobs: with: restore-yarn-cache: true - name: Restore Bootstrap cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: tools/bootstrap/.cache key: ${{ runner.os }}-bootstrap-${{ hashFiles('tools/requirements.txt') }} restore-keys: | ${{ runner.os }}-bootstrap- - name: Restore Rust cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cargo key: ${{ runner.os }}-rust-${{ hashFiles('tools/ci/ci_dependencies.sh')}} restore-keys: | ${{ runner.os }}-rust- - name: Restore Cutter cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: tools/icon_cutter/cache key: ${{ runner.os }}-cutter-${{ hashFiles('dependencies.sh') }}