Skip to content

Commit

Permalink
ci: Upgrade actions/upload-artifact and actions/download-artifact to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
alvicsam committed Nov 15, 2024
1 parent 66d9af8 commit 7f31457
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
time cargo build --release
- name: Archive aritfacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: polkadot-introspector
path: |
Expand All @@ -115,7 +115,7 @@ jobs:
uses: actions/checkout@v4

- name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: polkadot-introspector
path: ./artifacts
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
time cargo build --release
- name: Archive artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: polkadot-introspector
path: |
Expand All @@ -67,7 +67,7 @@ jobs:
echo "IMAGE_TAG=${{ github.ref_name }}" >> $GITHUB_ENV
- name: Download artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: polkadot-introspector
path: ./artifacts
Expand Down

0 comments on commit 7f31457

Please sign in to comment.