Skip to content

Commit

Permalink
Update upload/download-artifact to v3
Browse files Browse the repository at this point in the history
* Temporary measure to restore functioning CI
  • Loading branch information
glennchid authored and EmilioPeJu committed Sep 13, 2024
1 parent 0c40b2a commit aee0499
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:

# Upload container as an artifact
- name: Upload contianer as an artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: pandablocks-dev-container
path: .
Expand All @@ -88,7 +88,7 @@ jobs:
steps:

# Download artifact of image
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v3
with:
name: pandablocks-dev-container
path: .
Expand All @@ -114,7 +114,7 @@ jobs:
# Upload zips as artifact
- name: Upload deps and boot build files
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: zips
path: ./build/PandA-rootfs-${{ matrix.platform }}/*.zip
Expand All @@ -125,7 +125,7 @@ jobs:
# Make a release on every tag
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
steps:
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v3
with:
name: zips
path: zips
Expand Down

0 comments on commit aee0499

Please sign in to comment.