Skip to content

GH Actions: bump tagged versions of actions/cache #1212

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/internal-testsuite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
submodules: true

- name: Cache Rust toolchain
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
~/.rustup/toolchains
Expand All @@ -42,7 +42,7 @@ jobs:
key: ${{ runner.os }}-rust-toolchain-${{ hashFiles('rust-toolchain') }}

- name: Cache Rust artifacts
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand All @@ -52,7 +52,7 @@ jobs:
key: ${{ runner.os }}-${{ hashFiles('**/Cargo.lock', '**/c2rust-ast-exporter/**/CMakeLists.txt', '**/examples/**/CMakeLists.txt') }}

- name: Cache Python - pip
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
Expand All @@ -65,7 +65,7 @@ jobs:
# shell: bash

# - name: Cache testsuite compile_commands
# uses: actions/cache@v2
# uses: actions/cache@v4
# with:
# path: |
# ${{ github.workspace }}/testsuite/tests/**/compile_commands.json
Expand Down
Loading