From eb98bfdb8e33e92ee7583619a4afde87c153c102 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Apr 2022 09:20:28 +0000 Subject: [PATCH] Bump actions/upload-artifact from 2 to 3 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2 to 3. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/mingw-build.yml | 4 ++-- .github/workflows/msbuild.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/mingw-build.yml b/.github/workflows/mingw-build.yml index cd4864d..2a9e391 100644 --- a/.github/workflows/mingw-build.yml +++ b/.github/workflows/mingw-build.yml @@ -33,14 +33,14 @@ jobs: - name: Archive artifacts for x86 if: matrix.build_platform == '32' - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: nppsnippets_dll_linux_x32 path: NppSnippets.dll - name: Archive artifacts for x64 if: matrix.build_platform == '64' - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: nppsnippets_dll_linux_x64 path: NppSnippets.dll diff --git a/.github/workflows/msbuild.yml b/.github/workflows/msbuild.yml index a18d166..794487d 100644 --- a/.github/workflows/msbuild.yml +++ b/.github/workflows/msbuild.yml @@ -28,21 +28,21 @@ jobs: - name: Archive artifacts for x64 if: matrix.build_platform == 'x64' - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: nppsnippets_dll_x64 path: ${{ matrix.build_platform }}/${{ matrix.build_configuration }}/NppSnippets.dll - name: Archive artifacts for x32 if: matrix.build_platform == 'Win32' - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: nppsnippets_dll_x32 path: ${{ matrix.build_platform }}/${{ matrix.build_configuration }}/NppSnippets.dll - name: Archive artifacts for ARM64 if: matrix.build_platform == 'ARM64' - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: nppsnippets_dll_arm64 path: ${{ matrix.build_platform }}/${{ matrix.build_configuration }}/NppSnippets.dll