Skip to content

Commit 16b6779

Browse files
authored
Action and runner bumps (#21)
* chore(build.yml): bump upload/download-artifact actions and usage Signed-off-by: Vaughn Dice <vaughn.dice@fermyon.com> * fix(build.yml): bump ubuntu runners to 22.04 Signed-off-by: Vaughn Dice <vaughn.dice@fermyon.com> --------- Signed-off-by: Vaughn Dice <vaughn.dice@fermyon.com>
1 parent 90b6f16 commit 16b6779

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
config:
23-
- { target: "x86_64-unknown-linux-gnu", os: "ubuntu-20.04", arch: "amd64", extension: "" }
24-
- { target: "aarch64-unknown-linux-gnu", os: "ubuntu-20.04", arch: "aarch64", extension: "" }
23+
- { target: "x86_64-unknown-linux-gnu", os: "ubuntu-22.04", arch: "amd64", extension: "" }
24+
- { target: "aarch64-unknown-linux-gnu", os: "ubuntu-22.04", arch: "aarch64", extension: "" }
2525
- { target: "x86_64-apple-darwin", os: "macos-latest", arch: "amd64", extension: "" }
2626
- { target: "aarch64-apple-darwin", os: "macos-latest", arch: "aarch64", extension: "" }
2727
- { target: "x86_64-pc-windows-msvc", os: "windows-latest", arch: "amd64", extension: ".exe" }
@@ -61,12 +61,12 @@ jobs:
6161
# Special treatment for this because we need it for the merge
6262
- name: Archive Linux executable
6363
if: ${{ matrix.config.target == 'x86_64-unknown-linux-gnu' }}
64-
uses: actions/upload-artifact@v3
64+
uses: actions/upload-artifact@v4
6565
with:
6666
name: pluginify
6767
path: target/release/pluginify
6868
- name: Archive pluginified
69-
uses: actions/upload-artifact@v3
69+
uses: actions/upload-artifact@v4
7070
with:
7171
name: pluginify-${{ matrix.config.os }}-${{ matrix.config.arch }}
7272
path: |
@@ -92,7 +92,9 @@ jobs:
9292
shell: bash
9393
run: echo "RELEASE_VERSION=precanary" >> $GITHUB_ENV
9494
- name: Download artifacts
95-
uses: actions/download-artifact@v3
95+
uses: actions/download-artifact@v5
96+
with:
97+
pattern: pluginify*
9698
- name: Display structure of downloaded files
9799
run: ls -R
98100
- name: pluginify it

0 commit comments

Comments
 (0)