Skip to content

Commit 85f462e

Browse files
committed
download-artifact@v4 doesn't work with older versions of upload-artifact. Thanks dependabot
1 parent b55d03a commit 85f462e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
docker cp `docker ps -alq`:/root/aws-crt-ruby/gems/aws-crt .
4545
4646
- name: Upload artifacts
47-
uses: actions/upload-artifact@v2
47+
uses: actions/upload-artifact@v4
4848
with:
4949
name: out_${{ matrix.os }}_${{ matrix.arch }}
5050
path: |
@@ -68,7 +68,7 @@ jobs:
6868
python builder.pyz build -p ${{ env.PACKAGE_NAME }}
6969
7070
- name: Upload artifacts
71-
uses: actions/upload-artifact@v2
71+
uses: actions/upload-artifact@v4
7272
with:
7373
name: out_${{ matrix.os }}_${{ matrix.arch }}
7474
path: |
@@ -97,7 +97,7 @@ jobs:
9797
bundle exec rake "gem:aws-crt:platform[${{ matrix.arch }}]"
9898
9999
- name: Upload artifacts
100-
uses: actions/upload-artifact@v2
100+
uses: actions/upload-artifact@v4
101101
with:
102102
name: out_${{ matrix.os }}_${{ matrix.arch }}
103103
path: |
@@ -147,7 +147,7 @@ jobs:
147147
bundle exec rake package-all
148148
149149
- name: Upload release
150-
uses: actions/upload-artifact@v2
150+
uses: actions/upload-artifact@v4
151151
with:
152152
name: release_gems
153153
path: pkg/

0 commit comments

Comments
 (0)