Skip to content

Commit

Permalink
Merge pull request #213 from boozook/ci/upd-deps
Browse files Browse the repository at this point in the history
CI: update actions `create-branch` & `cache`
  • Loading branch information
boozook authored Mar 4, 2024
2 parents e9e1ca5 + be82b69 commit 2c9c9d7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
- uses: actions/checkout@v4

- name: Cache
uses: actions/cache@v3
uses: actions/cache@v4.0.1
with:
path: |
target/
Expand All @@ -72,7 +72,7 @@ jobs:
- name: Cache LLVM
id: cache-llvm
if: runner.os == 'Windows'
uses: actions/cache@v3
uses: actions/cache@v4.0.1
with:
path: ${{ runner.temp }}/llvm
key: llvm-14.0
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:
- uses: actions/checkout@v4

- name: Cache
uses: actions/cache@v3
uses: actions/cache@v4.0.1
with:
path: |
target/
Expand Down Expand Up @@ -231,7 +231,7 @@ jobs:
- uses: actions/checkout@v4

- name: Cache
uses: actions/cache@v3
uses: actions/cache@v4.0.1
with:
path: |
target/
Expand All @@ -246,7 +246,7 @@ jobs:
- name: Cache LLVM
id: cache-llvm
if: runner.os == 'Windows'
uses: actions/cache@v3
uses: actions/cache@v4.0.1
with:
path: ${{ runner.temp }}/llvm
key: llvm-14.0
Expand Down Expand Up @@ -329,7 +329,7 @@ jobs:
- uses: actions/checkout@v4

- name: Cache
uses: actions/cache@v3
uses: actions/cache@v4.0.1
with:
path: |
~/.cargo
Expand All @@ -349,7 +349,7 @@ jobs:
- name: Cache LLVM
id: cache-llvm
if: runner.os == 'Windows'
uses: actions/cache@v3
uses: actions/cache@v4.0.1
with:
path: ${{ runner.temp }}/llvm
key: llvm-14.0
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
- name: Create Branch
id: branch
uses: peterjgrainger/action-create-branch@v2.3.0
uses: peterjgrainger/action-create-branch@v3.0.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down Expand Up @@ -193,7 +193,7 @@ jobs:
ref: ${{ needs.new-branch.outputs.working }}

- name: Cache
uses: actions/cache@v3
uses: actions/cache@v4.0.1
with:
path: |
target/
Expand All @@ -203,7 +203,7 @@ jobs:
- name: Cache LLVM
id: cache-llvm
if: runner.os == 'Windows'
uses: actions/cache@v3
uses: actions/cache@v4.0.1
with:
path: ${{ runner.temp }}/llvm
key: llvm-14.0
Expand Down

0 comments on commit 2c9c9d7

Please sign in to comment.