Skip to content

Commit

Permalink
Switch to actions/upload-artifact@v4
Browse files Browse the repository at this point in the history
This commit updates 'actions/upload-artifact' used in our GitHub Actions
rules from

  actions/upload-artifact@v3

to

  actions/upload-artifact@v4.

According to the release note [1], there are several breaking changes
but none of them looks to be hitting us.

 [1]: https://github.com/actions/upload-artifact/releases/tag/v4.0.0
  • Loading branch information
yukawa committed Jan 21, 2024
1 parent 271b6ae commit 5016d0e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/android.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
bazel build --config oss_android package
- name: upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: native_libs.zip
path: src/bazel-bin/android/jni/native_libs.zip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
bazel build --config oss_linux package
- name: Upload Artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: mozc.zip
path: src/bazel-bin/unix/mozc.zip
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
bazel build --config oss_macos package --macos_cpus=arm64
- name: upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Mozc_arm64.pkg
path: src/bazel-bin/mac/Mozc.pkg
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
bazel build --config oss_macos package --macos_cpus=x86_64
- name: upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Mozc_intel64.pkg
path: src/bazel-bin/mac/Mozc.pkg
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
bazel build --config oss_macos package --macos_cpus=x86_64,arm64
- name: upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Mozc_universal_binary.pkg
path: src/bazel-bin/mac/Mozc.pkg
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
python build_mozc.py build -c Release package
- name: upload Mozc64.msi
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Mozc64.msi
path: src/out_win/Release/Mozc64.msi
Expand Down

0 comments on commit 5016d0e

Please sign in to comment.