-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
github: use stable actions/download-artifact@v4 (#624)
actions/download-artifact@master branch is already deprecated and switched to main branch. (master branch is 121 commits behind main) There is no need to always dare to follow main branch, so use stable v4 release. Signed-off-by: Kentaro Hayashi <[email protected]>
- Loading branch information
Showing
3 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -119,10 +119,10 @@ jobs: | |
test-lxc-image: ubuntu:22.04 | ||
steps: | ||
- uses: actions/checkout@master | ||
- uses: actions/download-artifact@master | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: packages-${{ matrix.rake-job }} | ||
- uses: actions/download-artifact@master | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: packages-apt-source-${{ matrix.rake-job }} | ||
- uses: canonical/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,7 +51,7 @@ jobs: | |
run: | | ||
rake yum:build YUM_TARGETS=${{ matrix.rake-job }} | ||
- name: Upload fluent-package rpm | ||
uses: actions/upload-artifact@master | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: packages-${{ matrix.rake-job }} | ||
path: fluent-package/yum/repositories | ||
|
@@ -112,7 +112,7 @@ jobs: | |
test-lxc-image: images:amazonlinux/2023 | ||
steps: | ||
- uses: actions/checkout@master | ||
- uses: actions/download-artifact@master | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: packages-${{ matrix.rake-job }} | ||
- uses: canonical/[email protected] | ||
|
@@ -138,7 +138,7 @@ jobs: | |
test-lxc-image: images:almalinux/9 | ||
steps: | ||
- uses: actions/checkout@master | ||
- uses: actions/download-artifact@master | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: packages-${{ matrix.rake-job }} | ||
- uses: canonical/[email protected] | ||
|