Skip to content

Commit

Permalink
github: Update actions/cache GitHub Action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
torokati44 committed Jan 29, 2024
1 parent c3d9201 commit 367f585
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
with:
path: inet
- run: mkdir -p /home/runner/work/ccache
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: /home/runner/work/ccache
key: native-${{ matrix.mode }}-ccache-${{ github.run_id }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Pull Docker image
run: docker pull ghcr.io/inet-framework/ci-inet:6.0.1-230503
- run: mkdir /home/runner/work/ccache
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: /home/runner/work/ccache
# See: https://github.com/actions/cache/blob/main/tips-and-workarounds.md#update-a-cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Pull Docker image
run: docker pull ghcr.io/inet-framework/ci-inet:6.0.1-230503
- run: mkdir /home/runner/work/ccache
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: /home/runner/work/ccache
# See: https://github.com/actions/cache/blob/main/tips-and-workarounds.md#update-a-cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/chart-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
with:
path: inet
- run: mkdir -p /home/runner/work/ccache
- uses: actions/cache/restore@v3
- uses: actions/cache/restore@v4
with:
path: /home/runner/work/ccache
key: native-${{ matrix.mode }}-ccache-${{ github.run_id }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/feature-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
with:
path: inet
- run: mkdir -p /home/runner/work/ccache
- uses: actions/cache/restore@v3
- uses: actions/cache/restore@v4
with:
path: /home/runner/work/ccache
key: native-${{ matrix.mode }}-ccache-${{ github.run_id }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fingerprint-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
with:
path: inet
- run: mkdir -p /home/runner/work/ccache
- uses: actions/cache/restore@v3
- uses: actions/cache/restore@v4
with:
path: /home/runner/work/ccache
key: native-${{ matrix.mode }}-ccache-${{ github.run_id }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/module-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
with:
path: inet
- run: mkdir -p /home/runner/work/ccache
- uses: actions/cache/restore@v3
- uses: actions/cache/restore@v4
with:
path: /home/runner/work/ccache
key: native-${{ matrix.mode }}-ccache-${{ github.run_id }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/other-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
with:
path: inet
- run: mkdir -p /home/runner/work/ccache
- uses: actions/cache/restore@v3
- uses: actions/cache/restore@v4
with:
path: /home/runner/work/ccache
key: native-${{ matrix.mode }}-ccache-${{ github.run_id }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/statistical-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
with:
path: inet
- run: mkdir -p /home/runner/work/ccache
- uses: actions/cache/restore@v3
- uses: actions/cache/restore@v4
with:
path: /home/runner/work/ccache
key: native-${{ matrix.mode }}-ccache-${{ github.run_id }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
with:
path: inet
- run: mkdir -p /home/runner/work/ccache
- uses: actions/cache/restore@v3
- uses: actions/cache/restore@v4
with:
path: /home/runner/work/ccache
key: native-${{ matrix.mode }}-ccache-${{ github.run_id }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validation-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
with:
path: inet
- run: mkdir -p /home/runner/work/ccache
- uses: actions/cache/restore@v3
- uses: actions/cache/restore@v4
with:
path: /home/runner/work/ccache
key: native-${{ matrix.mode }}-ccache-${{ github.run_id }}
Expand Down

0 comments on commit 367f585

Please sign in to comment.