Skip to content

Commit fe1187e

Browse files
authored
Setting actions version to latest (#245)
1 parent 86252c0 commit fe1187e

7 files changed

+19
-19
lines changed

.github/workflows/audit-check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
security_audit:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v1
11+
- uses: actions/checkout@v3
1212
- uses: actions-rs/audit-check@v1
1313
with:
1414
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/benchmark.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ jobs:
2222
os: [macos-latest, ubuntu-latest, windows-latest]
2323

2424
steps:
25-
- uses: actions/checkout@v2
25+
- uses: actions/checkout@v3
2626
with:
2727
fetch-depth: 1
2828

29-
- uses: actions/setup-python@v2
29+
- uses: actions/setup-python@v4
3030
name: Install Python 3.9
3131
with:
3232
python-version: 3.9
@@ -86,11 +86,11 @@ jobs:
8686
runs-on: ubuntu-latest
8787

8888
steps:
89-
- uses: actions/checkout@v2
89+
- uses: actions/checkout@v3
9090
with:
9191
fetch-depth: 1
9292

93-
- uses: actions/setup-python@v2
93+
- uses: actions/setup-python@v4
9494
name: Install Python 3.9
9595
with:
9696
python-version: 3.9

.github/workflows/build-arm64-wheels.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ jobs:
2323
- uses: Chia-Network/actions/clean-workspace@main
2424

2525
- name: Checkout repository
26-
uses: actions/checkout@v2
26+
uses: actions/checkout@v3
2727
with:
2828
fetch-depth: 1
2929

3030
- name: Set up QEMU on x86_64
3131
if: startsWith(matrix.os, 'ubuntu-latest')
3232
id: qemu
33-
uses: docker/setup-qemu-action@v1
33+
uses: docker/setup-qemu-action@v2
3434
with:
3535
platforms: arm64
3636

@@ -59,7 +59,7 @@ jobs:
5959
'
6060
6161
- name: Upload artifacts
62-
uses: actions/upload-artifact@v2
62+
uses: actions/upload-artifact@v3
6363
with:
6464
name: wheels
6565
path: wheel/target/wheels/

.github/workflows/build-m1-wheel.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- uses: Chia-Network/actions/clean-workspace@main
2727

2828
- name: Checkout code
29-
uses: actions/checkout@v2
29+
uses: actions/checkout@v3
3030
with:
3131
fetch-depth: 0
3232

@@ -86,7 +86,7 @@ jobs:
8686
arch -arm64 pytest tests
8787
8888
- name: Upload wheels
89-
uses: actions/upload-artifact@v2
89+
uses: actions/upload-artifact@v3
9090
with:
9191
name: wheels
9292
path: ./wheel/target/wheels

.github/workflows/build-npm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
run: node wasm/tests/index.js
3939

4040
- name: Upload npm pkg artifacts
41-
uses: actions/upload-artifact@v2
41+
uses: actions/upload-artifact@v3
4242
with:
4343
name: npm-pkg
4444
path: ./wasm/pkg/clvm_wasm-*.tgz

.github/workflows/build-test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ jobs:
2222
python: [3.7]
2323

2424
steps:
25-
- uses: actions/checkout@v2
25+
- uses: actions/checkout@v3
2626
with:
2727
fetch-depth: 0
2828

29-
- uses: actions/setup-python@v2
29+
- uses: actions/setup-python@v4
3030
name: Install Python ${{ matrix.python }}
3131
with:
3232
python-version: ${{ matrix.python }}
@@ -143,7 +143,7 @@ jobs:
143143
pytest tests
144144
145145
- name: Upload artifacts
146-
uses: actions/upload-artifact@v2
146+
uses: actions/upload-artifact@v3
147147
with:
148148
name: wheels
149149
path: ./wheel/target/wheels/
@@ -173,7 +173,7 @@ jobs:
173173
runs-on: ubuntu-20.04
174174
name: cargo fmt
175175
steps:
176-
- uses: actions/checkout@v2
176+
- uses: actions/checkout@v3
177177
with:
178178
fetch-depth: 1
179179
- name: Install rust
@@ -188,7 +188,7 @@ jobs:
188188
clippy:
189189
runs-on: ubuntu-20.04
190190
steps:
191-
- uses: actions/checkout@v1
191+
- uses: actions/checkout@v3
192192
- uses: actions-rs/toolchain@v1
193193
with:
194194
toolchain: stable
@@ -210,7 +210,7 @@ jobs:
210210
os: [macos-latest, ubuntu-latest]
211211
python: [3.7]
212212
steps:
213-
- uses: actions/checkout@v2
213+
- uses: actions/checkout@v3
214214
with:
215215
fetch-depth: 1
216216
- name: Install rust
@@ -231,7 +231,7 @@ jobs:
231231
os: [macos-latest, ubuntu-latest, windows-latest]
232232
python: [3.7]
233233
steps:
234-
- uses: actions/checkout@v2
234+
- uses: actions/checkout@v3
235235
with:
236236
fetch-depth: 1
237237
- name: Install rust

.github/workflows/dependency-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ jobs:
1717
- name: 'Checkout Repository'
1818
uses: actions/checkout@v3
1919
- name: 'Dependency Review'
20-
uses: actions/dependency-review-action@v2
20+
uses: actions/dependency-review-action@v3

0 commit comments

Comments
 (0)