From 2f68b2c4e25dd36306cc7fe9501e006d0bc22726 Mon Sep 17 00:00:00 2001 From: Darryl Pogue Date: Sat, 29 Jun 2024 19:07:51 -0700 Subject: [PATCH 1/2] Move to new GitHub artifact upload action --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2fb456269d..04cc176183 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -96,7 +96,7 @@ jobs: cmake --build build --target INSTALL --config "${{ matrix.cfg.type }}" -j 4 - name: Upload Artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: plasma-${{ matrix.platform.str }}-${{ matrix.cfg.str }} path: build/install @@ -176,7 +176,7 @@ jobs: cmake --build build --target INSTALL --config Release -j 4 - name: Upload Artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: plasma-${{ matrix.cfg.str }}-max-${{ matrix.cfg.sdk-version }} path: build/install @@ -257,7 +257,7 @@ jobs: cmake --build build --target install -j 4 - name: Upload Artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: plasma-${{ matrix.platform.str }}-${{ matrix.cfg.str }} path: build/install @@ -340,7 +340,7 @@ jobs: cmake --build build --target install --config "${{ matrix.cfg.type }}" -j 2 - name: Upload Artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: plasma-${{ matrix.platform.str }}-${{ matrix.cfg.str }} path: build/install From 208ce16666d78af366009a6158396c6e51c9b39a Mon Sep 17 00:00:00 2001 From: Darryl Pogue Date: Sat, 29 Jun 2024 20:07:14 -0700 Subject: [PATCH 2/2] Silence CI warnings about reinstalling brew packages --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 04cc176183..33ef47dc5d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -282,7 +282,7 @@ jobs: - name: Install dependencies run: | - brew install \ + brew install -q \ qt@5 \ autoconf \ automake \