From eccc2b909c43991e8c1acd9fcede3add307b97d4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 7 May 2026 00:06:22 +0000 Subject: [PATCH] chore(deps): 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/main.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 16ed3e268..5b08da7f8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -209,7 +209,7 @@ jobs: test -n "$(find target -name '*.AppImage' -print -quit)" test -n "$(find target -name '*.deb' -print -quit)" test -n "$(find target -name '*.rpm' -print -quit)" - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 if: failure() with: name: hotdog-linux-bundles @@ -244,7 +244,7 @@ jobs: find target -type f -name '*.dmg' -print test -n "$(find target -type d -name '*.app' -print -quit)" test -n "$(find target -type f -name '*.dmg' -print -quit)" - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 if: failure() with: name: hotdog-macos-bundles @@ -302,7 +302,7 @@ jobs: # shell: pwsh # run: | # Get-ChildItem -Path "$env:DIOXUS_WORKSPACE\target" -Recurse -Include "*.pdb","*.exe","*.dll" | Remove-Item -Force - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 if: failure() with: name: hotdog-windows-bundles-smoke @@ -353,7 +353,7 @@ jobs: # shell: pwsh # run: | # Get-ChildItem -Path "$env:DIOXUS_WORKSPACE\target" -Recurse -Include "*.pdb","*.exe","*.dll" | Remove-Item -Force - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 if: failure() with: name: playwright-report-windows @@ -412,7 +412,7 @@ jobs: npm install -D @playwright/test npx playwright install npx playwright test - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 if: failure() with: name: playwright-report-${{ matrix.toolchain }}-${{ runner.os }}