Skip to content

Commit eb46cb3

Browse files
Bump actions/upload-artifact from 4 to 5
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 9a8aeb6 commit eb46cb3

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/CI_build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ jobs:
3232
3333
- name: Archive artifacts for win32
3434
if: matrix.build_platform == 'Win32'
35-
uses: actions/upload-artifact@v4
35+
uses: actions/upload-artifact@v5
3636
with:
3737
name: artifacts_win32
3838
path: |
3939
Release\NppShell.x86.dll
4040
4141
- name: Archive artifacts for x64
4242
if: matrix.build_platform == 'x64'
43-
uses: actions/upload-artifact@v4
43+
uses: actions/upload-artifact@v5
4444
with:
4545
name: artifacts_x64
4646
path: |
@@ -49,7 +49,7 @@ jobs:
4949
5050
- name: Archive artifacts for ARM64
5151
if: matrix.build_platform == 'ARM64'
52-
uses: actions/upload-artifact@v4
52+
uses: actions/upload-artifact@v5
5353
with:
5454
name: artifacts_arm64
5555
path: |

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,15 +56,15 @@ jobs:
5656

5757
- name: Archive artifacts for win32
5858
if: matrix.build_platform == 'Win32'
59-
uses: actions/upload-artifact@v4
59+
uses: actions/upload-artifact@v5
6060
with:
6161
name: artifacts_win32
6262
path: |
6363
Release\NppShell.x86.dll
6464
6565
- name: Archive artifacts for x64
6666
if: matrix.build_platform == 'x64'
67-
uses: actions/upload-artifact@v4
67+
uses: actions/upload-artifact@v5
6868
with:
6969
name: artifacts_x64
7070
path: |
@@ -73,7 +73,7 @@ jobs:
7373
7474
- name: Archive artifacts for ARM64
7575
if: matrix.build_platform == 'ARM64'
76-
uses: actions/upload-artifact@v4
76+
uses: actions/upload-artifact@v5
7777
with:
7878
name: artifacts_arm64
7979
path: |

0 commit comments

Comments
 (0)