Skip to content

Commit dc0104c

Browse files
committed
ci: bump actions/checkout to v4
1 parent 9930305 commit dc0104c

14 files changed

+34
-34
lines changed

.github/workflows/benchmark_tests.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
container:
1919
image: ubuntu:20.04
2020
steps:
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v4
2222
- uses: actions/setup-node@v3
2323
with:
2424
node-version: 18

.github/workflows/changelog_verification.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-20.04
1515
steps:
1616
- name: checkout
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v4
1818
with:
1919
fetch-depth: 0
2020
path: manta
@@ -23,7 +23,7 @@ jobs:
2323
cd manta
2424
sudo cp CHANGELOG.md CHANGELOG_ORIGIN.md
2525
- name: get Changelog Generator
26-
uses: actions/checkout@v3
26+
uses: actions/checkout@v4
2727
with:
2828
repository: Manta-Network/Dev-Tools
2929
path: dev-tools

.github/workflows/check_parachain_lease_expiration.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
node-version: [16.x]
1616

1717
steps:
18-
- uses: actions/checkout@v2
18+
- uses: actions/checkout@v4
1919
- uses: borales/[email protected]
2020
- name: Check manta and calamari lease
2121
run: |

.github/workflows/check_tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
container:
1919
image: ubuntu:20.04
2020
steps:
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v4
2222
- name: install sccache
2323
env:
2424
SCCACHE_RELEASE_URL: https://github.com/mozilla/sccache/releases/download
@@ -83,7 +83,7 @@ jobs:
8383
container:
8484
image: ubuntu:20.04
8585
steps:
86-
- uses: actions/checkout@v2
86+
- uses: actions/checkout@v4
8787
- name: init
8888
shell: bash
8989
run: |

.github/workflows/docker.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
echo $image_id
4949
echo "Adjusting permissions so we can access docker logs..."
5050
sudo cat /var/lib/docker/containers/${image_id}/${image_id}-json.log
51-
- uses: actions/checkout@v2
51+
- uses: actions/checkout@v4
5252
with:
5353
repository: Manta-Network/Dev-Tools
5454
path: dev-tools

.github/workflows/integration_test_calamari.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
env:
3838
CARGO_TERM_COLOR: always
3939
steps:
40-
- uses: actions/checkout@v2
40+
- uses: actions/checkout@v4
4141
- uses: actions/setup-node@v3
4242
with:
4343
node-version: 18.12.x
@@ -168,7 +168,7 @@ jobs:
168168
echo "::set-output name=short-sha::${GITHUB_SHA:0:7}"
169169
manta export-state --chain $HOME/.local/share/calamari-pc/${{ matrix.chain-spec.id }}-${GITHUB_SHA:0:7}-spec.json > $HOME/.local/share/calamari-pc/${{ matrix.chain-spec.id }}-state.json || true
170170
- uses: borales/[email protected]
171-
- uses: actions/checkout@v2
171+
- uses: actions/checkout@v4
172172
with:
173173
repository: Manta-Network/Manta
174174
path: Manta
@@ -212,11 +212,11 @@ jobs:
212212
cd $GITHUB_WORKSPACE/zombienet-tool
213213
chmod +x zombienet
214214
./zombienet version
215-
- uses: actions/checkout@v2
215+
- uses: actions/checkout@v4
216216
with:
217217
repository: Manta-Network/Dev-Tools
218218
path: dev-tools-rococo
219-
- uses: actions/checkout@v2
219+
- uses: actions/checkout@v4
220220
with:
221221
repository: Manta-Network/Dev-Tools
222222
path: dev-tools-calamari
@@ -254,7 +254,7 @@ jobs:
254254
--no-autorestart \
255255
-- \
256256
--address=ws://127.0.0.1:9921
257-
- uses: actions/checkout@v2
257+
- uses: actions/checkout@v4
258258
with:
259259
repository: Manta-Network/Manta
260260
path: Manta
@@ -394,7 +394,7 @@ jobs:
394394
runtime:
395395
- name: calamari
396396
steps:
397-
- uses: actions/checkout@v2
397+
- uses: actions/checkout@v4
398398
- uses: actions/setup-node@v3
399399
- name: fetch manta
400400
uses: actions/download-artifact@v4
@@ -423,7 +423,7 @@ jobs:
423423
echo $image_id
424424
echo "Adjusting permissions so we can access docker logs..."
425425
sudo cat /var/lib/docker/containers/${image_id}/${image_id}-json.log
426-
- uses: actions/checkout@v2
426+
- uses: actions/checkout@v4
427427
with:
428428
repository: Manta-Network/Dev-Tools
429429
path: dev-tools

.github/workflows/integration_test_manta.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
env:
3838
CARGO_TERM_COLOR: always
3939
steps:
40-
- uses: actions/checkout@v2
40+
- uses: actions/checkout@v4
4141
- uses: actions/setup-node@v3
4242
- name: install sccache
4343
env:
@@ -164,7 +164,7 @@ jobs:
164164
echo "::set-output name=short-sha::${GITHUB_SHA:0:7}"
165165
manta export-state --chain $HOME/.local/share/calamari-pc/${{ matrix.chain-spec.id }}-${GITHUB_SHA:0:7}-spec.json > $HOME/.local/share/calamari-pc/${{ matrix.chain-spec.id }}-state.json || true
166166
- uses: borales/[email protected]
167-
- uses: actions/checkout@v2
167+
- uses: actions/checkout@v4
168168
with:
169169
repository: Manta-Network/Manta
170170
path: Manta
@@ -227,11 +227,11 @@ jobs:
227227
cd $GITHUB_WORKSPACE/zombienet-tool
228228
chmod +x zombienet
229229
./zombienet version
230-
- uses: actions/checkout@v2
230+
- uses: actions/checkout@v4
231231
with:
232232
repository: Manta-Network/Dev-Tools
233233
path: dev-tools-rococo
234-
- uses: actions/checkout@v2
234+
- uses: actions/checkout@v4
235235
with:
236236
repository: Manta-Network/Dev-Tools
237237
path: dev-tools-manta
@@ -269,7 +269,7 @@ jobs:
269269
--no-autorestart \
270270
-- \
271271
--address=ws://127.0.0.1:9921
272-
- uses: actions/checkout@v2
272+
- uses: actions/checkout@v4
273273
with:
274274
repository: Manta-Network/Manta
275275
path: Manta
@@ -382,7 +382,7 @@ jobs:
382382
runtime:
383383
- name: manta
384384
steps:
385-
- uses: actions/checkout@v2
385+
- uses: actions/checkout@v4
386386
- uses: actions/setup-node@v3
387387
- name: fetch manta
388388
uses: actions/download-artifact@v4
@@ -411,7 +411,7 @@ jobs:
411411
echo $image_id
412412
echo "Adjusting permissions so we can access docker logs..."
413413
sudo cat /var/lib/docker/containers/${image_id}/${image_id}-json.log
414-
- uses: actions/checkout@v2
414+
- uses: actions/checkout@v4
415415
with:
416416
repository: Manta-Network/Dev-Tools
417417
path: dev-tools

.github/workflows/metadata_diff.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
matrix:
2727
node-version: [16.x]
2828
steps:
29-
- uses: actions/checkout@v2
29+
- uses: actions/checkout@v4
3030
- uses: borales/[email protected]
3131
- name: install sccache
3232
env:
@@ -135,7 +135,7 @@ jobs:
135135
echo "Target version: $VERSION" >> output.txt
136136
echo "Chain: $CHAIN" >> output.txt
137137
echo "----------------------------------------------------------------------" >> output.txt
138-
- uses: actions/checkout@v2
138+
- uses: actions/checkout@v4
139139
with:
140140
repository: polkadot-js/tools
141141
path: tools

.github/workflows/publish_draft_releases.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: calamari
3838
- name: manta
3939
steps:
40-
- uses: actions/checkout@v2
40+
- uses: actions/checkout@v4
4141
- name: cache target dir
4242
uses: actions/cache@v2
4343
with:
@@ -80,7 +80,7 @@ jobs:
8080
env:
8181
CARGO_TERM_COLOR: always
8282
steps:
83-
- uses: actions/checkout@v2
83+
- uses: actions/checkout@v4
8484
- name: install sccache
8585
env:
8686
SCCACHE_RELEASE_URL: https://github.com/mozilla/sccache/releases/download
@@ -179,7 +179,7 @@ jobs:
179179
- name: manta
180180
if: startsWith(github.ref, 'refs/tags')
181181
steps:
182-
- uses: actions/checkout@v2
182+
- uses: actions/checkout@v4
183183
- uses: actions/download-artifact@v4
184184
with:
185185
name: ${{ matrix.runtime.name }}-runtime

.github/workflows/run_all_benchmarks.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
timeout-minutes: 720
2222
runs-on: runtime-large
2323
steps:
24-
- uses: actions/checkout@v2
24+
- uses: actions/checkout@v4
2525
- uses: actions/setup-node@v3
2626
with:
2727
node-version: 18

.github/workflows/run_linters.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
container:
1717
image: ubuntu:20.04
1818
steps:
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v4
2020
- name: Run yamllint
2121
uses: actionshub/[email protected]
2222
- name: install sccache

.github/workflows/runtime_upgrade_test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
env:
3030
CARGO_TERM_COLOR: always
3131
steps:
32-
- uses: actions/checkout@v2
32+
- uses: actions/checkout@v4
3333
- name: cache target dir
3434
uses: actions/cache@v2
3535
with:
@@ -145,7 +145,7 @@ jobs:
145145
cd $GITHUB_WORKSPACE/zombienet-tool
146146
chmod +x zombienet
147147
./zombienet version
148-
- uses: actions/checkout@v2
148+
- uses: actions/checkout@v4
149149
with:
150150
repository: Manta-Network/Dev-Tools
151151
path: dev-tools
@@ -162,7 +162,7 @@ jobs:
162162
uses: actions/download-artifact@v4
163163
with:
164164
name: ${{ env.RUNTIME }}-runtime
165-
- uses: actions/checkout@v2
165+
- uses: actions/checkout@v4
166166
with:
167167
repository: Manta-Network/Manta
168168
path: Manta

.github/workflows/try-runtime-mainnet.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
timeout-minutes: 120
2222
runs-on: ubuntu-20.04
2323
steps:
24-
- uses: actions/checkout@v2
24+
- uses: actions/checkout@v4
2525
- name: install sccache
2626
env:
2727
SCCACHE_RELEASE_URL: https://github.com/mozilla/sccache/releases/download
@@ -73,7 +73,7 @@ jobs:
7373
mv target/release/wbuild/${{ env.RUNTIME }}-runtime/${{ env.RUNTIME }}_runtime.compact.compressed.wasm $HOME/.local/bin/runtime.wasm
7474
chmod +x $HOME/.local/bin/manta
7575
echo "$HOME/.local/bin" >> $GITHUB_PATH
76-
- uses: actions/checkout@v2
76+
- uses: actions/checkout@v4
7777
with:
7878
repository: Manta-Network/Dev-Tools
7979
path: dev-tools-calamari

.github/workflows/unit_tests.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
container:
1919
image: ubuntu:20.04
2020
steps:
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v4
2222
- name: install sccache
2323
env:
2424
SCCACHE_RELEASE_URL: https://github.com/mozilla/sccache/releases/download

0 commit comments

Comments
 (0)