Skip to content

Commit d334d9c

Browse files
committed
Update upload action as previous v4 was deprecated.
1 parent 4120ee2 commit d334d9c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build-check-macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: (cd test/unit && make DEBUG=1 CXX=${{matrix.cpp_compiler}} --jobs=$(getconf _NPROCESSORS_ONLN) test)
2222
- name: Build Lexilla
2323
run: (cd src && make DEBUG=1 CXX=${{matrix.cpp_compiler}} --jobs=$(getconf _NPROCESSORS_ONLN))
24-
- uses: actions/upload-artifact@v4
24+
- uses: actions/upload-artifact@v6
2525
with:
2626
name: liblexilla.dylib
2727
path: bin/liblexilla.dylib

.github/workflows/build-check-win32.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
cd src
4040
nmake -f lexilla.mak DEBUG=1
4141
cd ..
42-
- uses: actions/upload-artifact@v4
42+
- uses: actions/upload-artifact@v6
4343
with:
4444
name: lexilla${{ matrix.arch == 'amd64_arm64' && '-arm64' || '' }}.dll
4545
path: bin/lexilla.dll

.github/workflows/build-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: (cd test/unit && make DEBUG=1 CXX=${{matrix.cpp_compiler}} --jobs=$(getconf _NPROCESSORS_ONLN) test)
2222
- name: Build Lexilla
2323
run: (cd src && make DEBUG=1 CXX=${{matrix.cpp_compiler}} --jobs=$(getconf _NPROCESSORS_ONLN))
24-
- uses: actions/upload-artifact@v4
24+
- uses: actions/upload-artifact@v6
2525
with:
2626
name: liblexilla-${{matrix.cpp_compiler}}.so
2727
path: bin/liblexilla.so

0 commit comments

Comments
 (0)