From 7dad0b6091207a5d5f393da5c478b5d0bf941c2b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 May 2026 22:19:45 +0000 Subject: [PATCH] Bump actions/upload-artifact from 3 to 7 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...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/cd.yml | 6 +++--- .github/workflows/ci.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 43b3b569..6ab5c6b5 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -232,7 +232,7 @@ jobs: if: ${{ matrix.platform == 'Mac' }} run: ditto -V -c -k --sequesterRsrc --keepParent "${{ matrix.what }}.app" "${{ matrix.what }}-${{ matrix.platform }}.zip" - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v7 if: ${{ matrix.platform == 'Mac' }} with: name: ${{ matrix.what }}-${{ matrix.platform }} @@ -240,7 +240,7 @@ jobs: ${{ matrix.what }}-${{ matrix.platform }}.zip name: 📁 Upload artifact - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v7 if: ${{ matrix.platform != 'Mac' }} with: name: ${{ matrix.what }}-${{ matrix.platform }} @@ -291,7 +291,7 @@ jobs: mkdir Plugins/StreamChat/dist/Content/SourceFiles find Plugins/StreamChat/dist -type f '(' -name "*.png" -o -name "*.svg" ')' -exec mv -i {} Plugins/StreamChat/dist/Content/SourceFiles \; - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v7 with: name: StreamChat.${{ matrix.engine }} path: | diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 12feeca8..ceb48dfe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -90,7 +90,7 @@ jobs: with open(output, 'w') as f: TestSuite.to_file(f, [ts], prettyprint=False) - name: 📤 Upload test report - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v7 with: path: Saved/Automation/Reports/report.xml name: test-report