Skip to content

Commit 12bfb01

Browse files
committed
bump actions for node16
1 parent e84f9a1 commit 12bfb01

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

.github/workflows/ci.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ jobs:
3535
]
3636

3737
steps:
38-
- uses: actions/checkout@v2
38+
- uses: actions/checkout@v3
3939

40-
- uses: actions/checkout@v2
40+
- uses: actions/checkout@v3
4141
with:
4242
repository: llvm/llvm-project
4343
path: llvm
@@ -77,33 +77,33 @@ jobs:
7777
run: sudo chown -R $(whoami):$(id -ng) ~/.cargo/
7878

7979
- name: Cache cargo installed crates
80-
uses: actions/cache@v1.1.2
80+
uses: actions/cache@v3
8181
with:
8282
path: ~/.cargo/bin
8383
key: cargo-installed-crates2-ubuntu-latest
8484

8585
- name: Cache cargo registry
86-
uses: actions/cache@v1
86+
uses: actions/cache@v3
8787
with:
8888
path: ~/.cargo/registry
8989
key: ${{ runner.os }}-cargo-registry2-${{ hashFiles('**/Cargo.lock') }}
9090

9191
- name: Cache cargo index
92-
uses: actions/cache@v1
92+
uses: actions/cache@v3
9393
with:
9494
path: ~/.cargo/git
9595
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
9696

9797
- name: Cache cargo target dir
98-
uses: actions/cache@v1.1.2
98+
uses: actions/cache@v3
9999
with:
100100
path: target
101101
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('rust-toolchain') }}
102102

103103
- name: Cache rust repository
104104
# We only clone the rust repository for rustc tests
105105
if: ${{ contains(matrix.commands, 'rustc') }}
106-
uses: actions/cache@v2
106+
uses: actions/cache@v3
107107
id: cache-rust-repository
108108
with:
109109
path: rust
@@ -140,5 +140,5 @@ jobs:
140140
duplicates:
141141
runs-on: ubuntu-latest
142142
steps:
143-
- uses: actions/checkout@v2
143+
- uses: actions/checkout@v3
144144
- run: python tools/check_intrinsics_duplicates.py

.github/workflows/release.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
- { gcc: "libgccjit.so", artifacts_branch: "master" }
2323

2424
steps:
25-
- uses: actions/checkout@v2
25+
- uses: actions/checkout@v3
2626

27-
- uses: actions/checkout@v2
27+
- uses: actions/checkout@v3
2828
with:
2929
repository: llvm/llvm-project
3030
path: llvm
@@ -64,25 +64,25 @@ jobs:
6464
run: sudo chown -R $(whoami):$(id -ng) ~/.cargo/
6565

6666
- name: Cache cargo installed crates
67-
uses: actions/cache@v1.1.2
67+
uses: actions/cache@v3
6868
with:
6969
path: ~/.cargo/bin
7070
key: cargo-installed-crates2-ubuntu-latest
7171

7272
- name: Cache cargo registry
73-
uses: actions/cache@v1
73+
uses: actions/cache@v3
7474
with:
7575
path: ~/.cargo/registry
7676
key: ${{ runner.os }}-cargo-registry2-${{ hashFiles('**/Cargo.lock') }}
7777

7878
- name: Cache cargo index
79-
uses: actions/cache@v1
79+
uses: actions/cache@v3
8080
with:
8181
path: ~/.cargo/git
8282
key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }}
8383

8484
- name: Cache cargo target dir
85-
uses: actions/cache@v1.1.2
85+
uses: actions/cache@v3
8686
with:
8787
path: target
8888
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('rust-toolchain') }}

0 commit comments

Comments
 (0)