From 31ba304b8a7b3de5403938d30a8ce352425136bb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Dec 2023 12:24:43 +0000 Subject: [PATCH] Bump actions/upload-artifact from 3 to 4 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/cd.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 5fe1e4ef8e..300bcaba69 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -64,20 +64,20 @@ jobs: - name: Upload zip to GitHub Artifacts if: github.event_name == 'push' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: texstudio-win-qt6-zip path: ./build/package-zip/texstudio-win-qt6-${{ steps.package.outputs.VERSION_NAME }}.zip - name: Upload to GitHub Artifacts if: github.event_name == 'push' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: texstudio-win-qt6-exe path: texstudio-win-qt6-${{ steps.package.outputs.VERSION_NAME }}.exe - name: Upload release file(s) - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: startsWith(github.ref, 'refs/tags/') with: name: release @@ -134,13 +134,13 @@ jobs: - name: Upload to Github Artifacts if: github.event_name == 'push' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: texstudio-linux path: texstudio-linux-${{ steps.package.outputs.VERSION_NAME }}-x86_64.AppImage - name: Upload release file(s) - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: startsWith(github.ref, 'refs/tags/') with: name: release @@ -221,13 +221,13 @@ jobs: - name: Upload to Github artifacts if: github.event_name == 'push' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: texstudio-osx path: texstudio-osx-${{ steps.package.outputs.VERSION_NAME }}.dmg - name: Upload release file(s) - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: startsWith(github.ref, 'refs/tags/') with: name: release