Skip to content

Commit 2378026

Browse files
Bump the github-actions group across 1 directory with 2 updates
Bumps the github-actions group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [actions/cache](https://github.com/actions/cache). Updates `actions/checkout` from 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v6...v7) Updates `actions/cache` from 5 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 1b5bdd4 commit 2378026

5 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/fairy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run:
3737
working-directory: src
3838
steps:
39-
- uses: actions/checkout@v6
39+
- uses: actions/checkout@v7
4040
with:
4141
fetch-depth: 0
4242

.github/workflows/ffishjs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
node-version: [12.x]
2020

2121
steps:
22-
- uses: actions/checkout@v6
22+
- uses: actions/checkout@v7
2323
- name: Setup cache
2424
id: cache-system-libraries
25-
uses: actions/cache@v5
25+
uses: actions/cache@v6
2626
with:
2727
path: ${{env.EM_CACHE_FOLDER}}
2828
key: emsdk-${{env.EM_VERSION}}-${{ runner.os }}
@@ -53,10 +53,10 @@ jobs:
5353
node-version: [12.x]
5454

5555
steps:
56-
- uses: actions/checkout@v6
56+
- uses: actions/checkout@v7
5757
- name: Setup cache
5858
id: cache-system-libraries
59-
uses: actions/cache@v5
59+
uses: actions/cache@v6
6060
with:
6161
path: ${{env.EM_CACHE_FOLDER}}
6262
key: emsdk-${{env.EM_VERSION}}-${{ runner.os }}

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
maximum-size: 16GB
2121
disk-root: "C:"
2222

23-
- uses: actions/checkout@v6
23+
- uses: actions/checkout@v7
2424

2525
- name: make
2626
run: cd src && make clean && make -j build COMP=mingw ARCH=${{ matrix.arch }} EXE=fairy-stockfish_${{ matrix.arch }}.exe && strip fairy-stockfish_${{ matrix.arch }}.exe
@@ -46,7 +46,7 @@ jobs:
4646
runs-on: ubuntu-24.04
4747

4848
steps:
49-
- uses: actions/checkout@v6
49+
- uses: actions/checkout@v7
5050

5151
- name: make
5252
run: cd src && make clean && make -j build COMP=gcc ARCH=${{ matrix.arch }} EXE=fairy-stockfish_${{ matrix.arch }} && strip fairy-stockfish_${{ matrix.arch }}
@@ -72,7 +72,7 @@ jobs:
7272
runs-on: macos-15-intel
7373

7474
steps:
75-
- uses: actions/checkout@v6
75+
- uses: actions/checkout@v7
7676

7777
- name: make
7878
run: cd src && make clean && make -j build COMP=clang ARCH=${{ matrix.arch }} EXE=fairy-stockfish_${{ matrix.arch }} && strip fairy-stockfish_${{ matrix.arch }}
@@ -97,7 +97,7 @@ jobs:
9797
runs-on: macos-14
9898

9999
steps:
100-
- uses: actions/checkout@v6
100+
- uses: actions/checkout@v7
101101

102102
- name: make
103103
run: cd src && make clean && make -j build COMP=clang ARCH=${{ matrix.arch }} EXE=fairy-stockfish_${{ matrix.arch }} && strip fairy-stockfish_${{ matrix.arch }}

.github/workflows/stockfish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
run:
4040
working-directory: src
4141
steps:
42-
- uses: actions/checkout@v6
42+
- uses: actions/checkout@v7
4343
with:
4444
fetch-depth: 0
4545

.github/workflows/wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
os: [ubuntu-24.04, windows-2022, macos-14]
1818

1919
steps:
20-
- uses: actions/checkout@v6
20+
- uses: actions/checkout@v7
2121

2222
# Used to host cibuildwheel
2323
- uses: actions/setup-python@v6
@@ -43,7 +43,7 @@ jobs:
4343
name: Build source distribution
4444
runs-on: ubuntu-24.04
4545
steps:
46-
- uses: actions/checkout@v6
46+
- uses: actions/checkout@v7
4747
- uses: actions/setup-python@v6
4848
with:
4949
python-version: '3.9'

0 commit comments

Comments
 (0)