Skip to content

Commit cfa96a5

Browse files
Bump actions/download-artifact from 3 to 4 in /.github/workflows (#229)
1 parent 7616274 commit cfa96a5

File tree

7 files changed

+443
-375
lines changed

7 files changed

+443
-375
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
# Uploads the src/main as an artifact with the provided folder name as its name.
7171
# In order to delete this artifact, the same name must go into the list in the `android-delete-artifacts` job.
7272
- name: Upload src/main as artifact
73-
uses: actions/upload-artifact@v3
73+
uses: actions/upload-artifact@v4
7474
with:
7575
name: ${{ matrix.folder-name }}
7676
path: android/ironoxide-android/src/main/android_build.zip
@@ -91,7 +91,7 @@ jobs:
9191
- name: Checkout
9292
uses: actions/checkout@v4
9393
- name: Download android build
94-
uses: actions/download-artifact@v3
94+
uses: actions/download-artifact@v4
9595
with:
9696
name: ${{ matrix.arch }}
9797
- name: Unzip Android build

.github/workflows/release-github.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
tag_name: ${{ steps.version.outputs.tag }}
5757
release_name: Version ${{ steps.version.outputs.tag }}
5858
- name: Download java release artifacts from ubuntu-22.04
59-
uses: actions/download-artifact@v3
59+
uses: actions/download-artifact@v4
6060
with:
6161
name: release-ubuntu-22.04
6262
path: release/ubuntu-22.04
@@ -75,7 +75,7 @@ jobs:
7575
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7676

7777
- name: Download java release artifacts from macos-12
78-
uses: actions/download-artifact@v3
78+
uses: actions/download-artifact@v4
7979
with:
8080
name: release-macos-12
8181
path: release/macos-12
@@ -94,7 +94,7 @@ jobs:
9494
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9595

9696
# - name: Download iOS release artifacts from build-cpp
97-
# uses: actions/download-artifact@v3
97+
# uses: actions/download-artifact@v4
9898
# with:
9999
# name: release-iOS
100100
# path: release/release-iOS
@@ -141,13 +141,13 @@ jobs:
141141
args: --release
142142
- name: Upload artifacts for ubuntu-22.04
143143
if: startsWith(matrix.os, 'ubuntu')
144-
uses: actions/upload-artifact@v3
144+
uses: actions/upload-artifact@v4
145145
with:
146146
name: release-ubuntu-22.04
147147
path: target/release/libironoxide_java.so
148148
- name: Upload artifacts for macos-12
149149
if: startsWith(matrix.os, 'macos')
150-
uses: actions/upload-artifact@v3
150+
uses: actions/upload-artifact@v4
151151
with:
152152
name: release-macos-12
153153
path: target/release/libironoxide_java.dylib
@@ -172,7 +172,7 @@ jobs:
172172
# tar -r -f ironoxide-homebrew.tar -C target/universal/release libironoxide.a
173173
# gzip ironoxide-homebrew.tar
174174
# - name: Upload iOS artifact
175-
# uses: actions/upload-artifact@v3
175+
# uses: actions/upload-artifact@v4
176176
# with:
177177
# name: release-iOS
178178
# path: ironoxide-homebrew.tar.gz

0 commit comments

Comments
 (0)