Skip to content

Commit 84dd49a

Browse files
Bump actions/upload-artifact from 4 to 5 in the github-actions group (#931)
Bumps the github-actions group with 1 update: [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `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 dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent cfac8e8 commit 84dd49a

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/ffishjs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
working-directory: src
7373
run: rm -f ../tests/js/ffish.js & rm -f ../tests/js/ffish.wasm & make -f Makefile_js build es6=yes
7474
- name: Upload ffish.js ES6/ES2015 module ZIP archive
75-
uses: actions/upload-artifact@v4
75+
uses: actions/upload-artifact@v5
7676
with:
7777
name: ffishjs-es6
7878
path: tests/js/*
@@ -82,7 +82,7 @@ jobs:
8282
working-directory: src
8383
run: rm -f ../tests/js/ffish.js & rm -f ../tests/js/ffish.wasm & make -f Makefile_js build
8484
- name: Upload ffish.js standard module ZIP archive
85-
uses: actions/upload-artifact@v4
85+
uses: actions/upload-artifact@v5
8686
with:
8787
name: ffishjs-standard
8888
path: tests/js/*

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
if: ${{ matrix.arch == 'x86-64' }}
3333
run: cd src && make clean && make -j build COMP=mingw ARCH=${{ matrix.arch }} EXE=fairy-stockfish-all_${{ matrix.arch }}.exe largeboards=yes all=yes && strip fairy-stockfish-all_${{ matrix.arch }}.exe
3434

35-
- uses: actions/upload-artifact@v4
35+
- uses: actions/upload-artifact@v5
3636
with:
3737
name: fairy-stockfish-windows-${{ matrix.arch }}
3838
path: src/fairy-stockfish*.exe
@@ -58,7 +58,7 @@ jobs:
5858
if: ${{ matrix.arch == 'x86-64' }}
5959
run: cd src && make clean && make -j build COMP=gcc ARCH=${{ matrix.arch }} EXE=fairy-stockfish-all_${{ matrix.arch }} largeboards=yes all=yes && strip fairy-stockfish-all_${{ matrix.arch }}
6060

61-
- uses: actions/upload-artifact@v4
61+
- uses: actions/upload-artifact@v5
6262
with:
6363
name: fairy-stockfish-linux-${{ matrix.arch }}
6464
path: src/fairy-stockfish*
@@ -83,7 +83,7 @@ jobs:
8383
- name: make all
8484
run: cd src && make clean && make -j build COMP=clang ARCH=${{ matrix.arch }} EXE=fairy-stockfish-all_${{ matrix.arch }} largeboards=yes all=yes && strip fairy-stockfish-all_${{ matrix.arch }}
8585

86-
- uses: actions/upload-artifact@v4
86+
- uses: actions/upload-artifact@v5
8787
with:
8888
name: fairy-stockfish-macos-${{ matrix.arch }}
8989
path: src/fairy-stockfish*
@@ -108,7 +108,7 @@ jobs:
108108
- name: make all
109109
run: cd src && make clean && make -j build COMP=clang ARCH=${{ matrix.arch }} EXE=fairy-stockfish-all_${{ matrix.arch }} largeboards=yes all=yes && strip fairy-stockfish-all_${{ matrix.arch }}
110110

111-
- uses: actions/upload-artifact@v4
111+
- uses: actions/upload-artifact@v5
112112
with:
113113
name: fairy-stockfish-macos-m1-${{ matrix.arch }}
114114
path: src/fairy-stockfish*

.github/workflows/wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
CIBW_SKIP: "pp* *-win32 *-manylinux_i686 *-musllinux_* cp36-* cp37-* cp38"
3535
CIBW_TEST_COMMAND: python {project}/test.py
3636

37-
- uses: actions/upload-artifact@v4
37+
- uses: actions/upload-artifact@v5
3838
with:
3939
name: dist-wheel-${{ matrix.os }}
4040
path: ./wheelhouse/*.whl
@@ -51,7 +51,7 @@ jobs:
5151
- name: Build sdist
5252
run: python setup.py sdist
5353

54-
- uses: actions/upload-artifact@v4
54+
- uses: actions/upload-artifact@v5
5555
with:
5656
name: dist-source
5757
path: dist/*.tar.gz

0 commit comments

Comments
 (0)