Skip to content

Commit abd622b

Browse files
authored
Merge pull request #42 from ffes/dependabot/github_actions/actions/upload-artifact-3
Bump actions/upload-artifact from 2 to 3
2 parents 6f02038 + eb98bfd commit abd622b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/mingw-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ jobs:
3333

3434
- name: Archive artifacts for x86
3535
if: matrix.build_platform == '32'
36-
uses: actions/upload-artifact@v2
36+
uses: actions/upload-artifact@v3
3737
with:
3838
name: nppsnippets_dll_linux_x32
3939
path: NppSnippets.dll
4040

4141
- name: Archive artifacts for x64
4242
if: matrix.build_platform == '64'
43-
uses: actions/upload-artifact@v2
43+
uses: actions/upload-artifact@v3
4444
with:
4545
name: nppsnippets_dll_linux_x64
4646
path: NppSnippets.dll

.github/workflows/msbuild.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,21 +28,21 @@ jobs:
2828

2929
- name: Archive artifacts for x64
3030
if: matrix.build_platform == 'x64'
31-
uses: actions/upload-artifact@v2
31+
uses: actions/upload-artifact@v3
3232
with:
3333
name: nppsnippets_dll_x64
3434
path: ${{ matrix.build_platform }}/${{ matrix.build_configuration }}/NppSnippets.dll
3535

3636
- name: Archive artifacts for x32
3737
if: matrix.build_platform == 'Win32'
38-
uses: actions/upload-artifact@v2
38+
uses: actions/upload-artifact@v3
3939
with:
4040
name: nppsnippets_dll_x32
4141
path: ${{ matrix.build_platform }}/${{ matrix.build_configuration }}/NppSnippets.dll
4242

4343
- name: Archive artifacts for ARM64
4444
if: matrix.build_platform == 'ARM64'
45-
uses: actions/upload-artifact@v2
45+
uses: actions/upload-artifact@v3
4646
with:
4747
name: nppsnippets_dll_arm64
4848
path: ${{ matrix.build_platform }}/${{ matrix.build_configuration }}/NppSnippets.dll

0 commit comments

Comments
 (0)