Skip to content

Commit b956002

Browse files
authored
Merge pull request #5201 from Lezek123/migrate-github-workflows
GitHub workflows: Migrate actions/(upload|download)-artifact to v4
2 parents 7144462 + 61c1ec4 commit b956002

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/create-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
tar czvf joystream-node-macos.tar.gz -C ./target/release joystream-node
4040
4141
- name: Temporarily save node binary
42-
uses: actions/upload-artifact@v3
42+
uses: actions/upload-artifact@v4
4343
with:
4444
name: joystream-node-macos-${{ steps.compute_shasum.outputs.shasum }}
4545
path: joystream-node-macos.tar.gz
@@ -80,7 +80,7 @@ jobs:
8080
tar -czvf joystream-node-$VERSION_AND_COMMIT-arm64-linux-gnu.tar.gz joystream-node
8181
8282
- name: Retrieve saved MacOS binary
83-
uses: actions/download-artifact@v3
83+
uses: actions/download-artifact@v4
8484
with:
8585
name: joystream-node-macos-${{ steps.compute_shasum.outputs.shasum }}
8686

.github/workflows/deploy-node-network.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ jobs:
168168
7z a -p${{ steps.network_config.outputs.encryptionKey }} chain-data.7z deploy_artifacts/*
169169
170170
- name: Save the output as an artifact
171-
uses: actions/upload-artifact@v3
171+
uses: actions/upload-artifact@v4
172172
with:
173173
name: data-chainspec-auth
174174
path: devops/ansible/chain-data.7z

.github/workflows/deploy-playground.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ on:
3434
description: 'SURI of treasury account'
3535
required: false
3636
default: '//Alice'
37-
initialBalances:
37+
initialBalances:
3838
description: 'JSON string or http URL to override initial balances and vesting config'
3939
default: ''
4040
required: false
@@ -112,7 +112,7 @@ jobs:
112112
--verbose
113113
114114
- name: Save the endpoints file as an artifact
115-
uses: actions/upload-artifact@v3
115+
uses: actions/upload-artifact@v4
116116
with:
117117
name: endpoints
118118
path: devops/ansible/endpoints.json

.github/workflows/run-network-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ jobs:
141141
if: steps.check_files.outputs.files_exists == 'false'
142142

143143
- name: Save joystream/node image to Artifacts
144-
uses: actions/upload-artifact@v3
144+
uses: actions/upload-artifact@v4
145145
with:
146146
name: ${{ steps.compute_shasum.outputs.shasum }}-joystream-node-docker-image.tar.gz
147147
path: joystream-node-docker-image.tar.gz
@@ -166,7 +166,7 @@ jobs:
166166
with:
167167
node-version: '18.x'
168168
- name: Get artifacts
169-
uses: actions/download-artifact@v3
169+
uses: actions/download-artifact@v4
170170
with:
171171
name: ${{ needs.build_images.outputs.use_artifact }}
172172
- name: Install artifacts

devops/extrinsic-ordering/tx-ordering.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
run: pkill polkadot
7575

7676
- name: Save output as artifact
77-
uses: actions/upload-artifact@v3
77+
uses: actions/upload-artifact@v4
7878
with:
7979
name: ${{ env.CHAIN }}
8080
path: |

0 commit comments

Comments
 (0)