Skip to content

Commit

Permalink
GitHub workflows: Migrate actions/(upload|download)-artifact to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
Lezek123 committed Feb 11, 2025
1 parent 7144462 commit 61c1ec4
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
tar czvf joystream-node-macos.tar.gz -C ./target/release joystream-node
- name: Temporarily save node binary
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: joystream-node-macos-${{ steps.compute_shasum.outputs.shasum }}
path: joystream-node-macos.tar.gz
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
tar -czvf joystream-node-$VERSION_AND_COMMIT-arm64-linux-gnu.tar.gz joystream-node
- name: Retrieve saved MacOS binary
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: joystream-node-macos-${{ steps.compute_shasum.outputs.shasum }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-node-network.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ jobs:
7z a -p${{ steps.network_config.outputs.encryptionKey }} chain-data.7z deploy_artifacts/*
- name: Save the output as an artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: data-chainspec-auth
path: devops/ansible/chain-data.7z
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-playground.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ on:
description: 'SURI of treasury account'
required: false
default: '//Alice'
initialBalances:
initialBalances:
description: 'JSON string or http URL to override initial balances and vesting config'
default: ''
required: false
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
--verbose
- name: Save the endpoints file as an artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: endpoints
path: devops/ansible/endpoints.json
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run-network-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ jobs:
if: steps.check_files.outputs.files_exists == 'false'

- name: Save joystream/node image to Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ steps.compute_shasum.outputs.shasum }}-joystream-node-docker-image.tar.gz
path: joystream-node-docker-image.tar.gz
Expand All @@ -166,7 +166,7 @@ jobs:
with:
node-version: '18.x'
- name: Get artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ needs.build_images.outputs.use_artifact }}
- name: Install artifacts
Expand Down
2 changes: 1 addition & 1 deletion devops/extrinsic-ordering/tx-ordering.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
run: pkill polkadot

- name: Save output as artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.CHAIN }}
path: |
Expand Down

0 comments on commit 61c1ec4

Please sign in to comment.