Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/download-artifact and actions/upload-artifact to v4 #293

Merged
merged 1 commit into from
Sep 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/create-channel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
aws s3 cp build/builder s3://$AWS_S3_BUCKET/channels/$CHANNEL/builder.pyz

- name: Artifact builder
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: builder
path: build/builder
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
aws s3 cp build/builder s3://$AWS_S3_BUCKET/releases/${{ steps.tag.outputs.release_tag }}/builder.pyz

- name: Artifact builder
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: builder
path: build/builder
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/sanity-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
zipinfo -1 build/builder.pyz

- name: Artifact builder
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: builder
path: build/builder.pyz
Expand All @@ -86,7 +86,7 @@ jobs:
uses: actions/checkout@v4

- name: Install builder
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: builder
path: .
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:
uses: actions/checkout@v4

- name: Install builder
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: builder
path: .
Expand Down Expand Up @@ -186,7 +186,7 @@ jobs:
uses: actions/checkout@v4

- name: Install builder
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: builder
path: .
Expand All @@ -208,7 +208,7 @@ jobs:
uses: actions/checkout@v4

- name: Install builder
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: builder
path: .
Expand All @@ -230,7 +230,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Install builder
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: builder
path: .
Expand Down Expand Up @@ -258,7 +258,7 @@ jobs:
uses: actions/checkout@v4

- name: Install builder
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: builder
path: .
Expand Down
Loading