Skip to content

Commit feb8617

Browse files
dependabot[bot]saghul
authored andcommitted
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 2a0bb93 commit feb8617

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -784,7 +784,7 @@ jobs:
784784
run: |
785785
meson test -C build-${{ matrix.flavor }} --timeout-multiplier 5 --print-errorlogs
786786
meson test --benchmark -C build-${{ matrix.flavor }} --timeout-multiplier 5 --print-errorlogs
787-
- uses: actions/upload-artifact@v4
787+
- uses: actions/upload-artifact@v5
788788
if: ${{ failure() }}
789789
with:
790790
name: ${{ matrix.platform }}-${{ matrix.mode.name }}-${{ matrix.features.name }}-${{ matrix.flavor }}-logs

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
run: |
3636
file build/*-linux-${{matrix.arch}}
3737
- name: upload
38-
uses: actions/upload-artifact@v4
38+
uses: actions/upload-artifact@v5
3939
with:
4040
name: qjs-linux-${{matrix.arch}}
4141
path: build/*-linux-${{matrix.arch}}
@@ -57,13 +57,13 @@ jobs:
5757
run: |
5858
lipo -info build/qjs-darwin build/qjsc-darwin
5959
- name: upload amalgamation
60-
uses: actions/upload-artifact@v4
60+
uses: actions/upload-artifact@v5
6161
with:
6262
name: quickjs-amalgam.zip
6363
path: build/quickjs-amalgam.zip
6464
compression-level: 0 # already compressed
6565
- name: upload
66-
uses: actions/upload-artifact@v4
66+
uses: actions/upload-artifact@v5
6767
with:
6868
name: qjs-darwin
6969
path: build/*-darwin
@@ -100,7 +100,7 @@ jobs:
100100
file build/qjs-windows-${{matrix.arch}}.exe
101101
ldd build/qjs-windows-${{matrix.arch}}.exe build/qjsc-windows-${{matrix.arch}}.exe
102102
- name: upload
103-
uses: actions/upload-artifact@v4
103+
uses: actions/upload-artifact@v5
104104
with:
105105
name: qjs-windows-${{matrix.arch}}
106106
path: build/*-windows-${{matrix.arch}}.exe
@@ -119,7 +119,7 @@ jobs:
119119
make -C build qjs_exe
120120
mv build/qjs build/qjs-wasi.wasm
121121
- name: upload
122-
uses: actions/upload-artifact@v4
122+
uses: actions/upload-artifact@v5
123123
with:
124124
name: qjs-wasi
125125
path: build/qjs-wasi.wasm

0 commit comments

Comments
 (0)