From bd3b4a215abb8c5403a287790042538b3a342a71 Mon Sep 17 00:00:00 2001 From: Daniele Conti Date: Fri, 26 Jan 2024 09:57:44 +0100 Subject: [PATCH 1/2] Update github actions to latest --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 56c12ad..5758c32 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,7 +12,7 @@ jobs: matrix: os: [ windows-latest, macos-latest, ubuntu-latest ] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Build Windows if: matrix.os == 'windows-latest' run: | @@ -63,7 +63,7 @@ jobs: zip out/roast-linux-x86_64.zip ./roast-linux-x86_64 zip out/roast-linux-aarch64.zip ./roast-linux-aarch64 - name: Artifact upload - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: outputs path: out From 728c1a8980097c86fb5375d536de5217ca4bb994 Mon Sep 17 00:00:00 2001 From: Daniele Conti Date: Fri, 26 Jan 2024 10:01:47 +0100 Subject: [PATCH 2/2] Upload multiple artifacts per matrix run --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5758c32..1100119 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -65,7 +65,7 @@ jobs: - name: Artifact upload uses: actions/upload-artifact@v4 with: - name: outputs + name: outputs-${{ matrix.os }} path: out retention-days: 1 - name: Release