From bb18b38a4818bacf53c5d0100334c4cff549cc3a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 27 Feb 2026 13:12:52 +0000 Subject: [PATCH] Bump actions/upload-artifact from 6 to 7 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/master.yml | 8 ++++---- .github/workflows/pr.yaml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index eb0e27a4..5def0556 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -44,28 +44,28 @@ jobs: id: version - name: Upload Aroma version if: ${{ startsWith(github.event.head_commit.message, 'v') && contains(github.event.head_commit.message, '.') && !endsWith(github.event.head_commit.message, '.') && (contains(github.event.head_commit.message, '-ALPHA') || contains(github.event.head_commit.message, '-BETA')) }} - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: NUSspli-${{ steps.version.outputs.version }}-Aroma path: out/Aroma/* if-no-files-found: warn - name: Upload Aroma debug version if: ${{ startsWith(github.event.head_commit.message, 'v') && contains(github.event.head_commit.message, '.') && !endsWith(github.event.head_commit.message, '.') && (contains(github.event.head_commit.message, '-ALPHA') || contains(github.event.head_commit.message, '-BETA')) }} - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: NUSspli-${{ steps.version.outputs.version }}-Aroma-DEBUG path: out/Aroma-DEBUG/* if-no-files-found: error - name: Upload Channel version if: ${{ startsWith(github.event.head_commit.message, 'v') && contains(github.event.head_commit.message, '.') && !endsWith(github.event.head_commit.message, '.') && (contains(github.event.head_commit.message, '-ALPHA') || contains(github.event.head_commit.message, '-BETA')) }} - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: NUSspli-${{ steps.version.outputs.version }}-Channel path: out/Channel/* if-no-files-found: warn - name: Upload Channel debug version if: ${{ startsWith(github.event.head_commit.message, 'v') && contains(github.event.head_commit.message, '.') && !endsWith(github.event.head_commit.message, '.') && (contains(github.event.head_commit.message, '-ALPHA') || contains(github.event.head_commit.message, '-BETA')) }} - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: NUSspli-${{ steps.version.outputs.version }}-Channel-DEBUG path: out/Channel-DEBUG/* diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index 80e7e7b6..e4a52b35 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -30,13 +30,13 @@ jobs: docker build . -t builder docker run --rm -v ${PWD}:/project builder python3 build.py - name: Upload Aroma version - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: NUSspli-Aroma-DEBUG path: out/Aroma-DEBUG/* if-no-files-found: error - name: Upload Channel version - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: NUSspli-Channel-DEBUG path: out/Channel-DEBUG/*