Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/fairy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
run:
working-directory: src
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ffishjs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
node-version: [12.x]

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Setup cache
id: cache-system-libraries
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ${{env.EM_CACHE_FOLDER}}
key: emsdk-${{env.EM_VERSION}}-${{ runner.os }}
Expand Down Expand Up @@ -53,10 +53,10 @@ jobs:
node-version: [12.x]

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Setup cache
id: cache-system-libraries
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ${{env.EM_CACHE_FOLDER}}
key: emsdk-${{env.EM_VERSION}}-${{ runner.os }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
maximum-size: 16GB
disk-root: "C:"

- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: make
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
Expand All @@ -46,7 +46,7 @@ jobs:
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

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

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

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

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: make
run: cd src && make clean && make -j build COMP=clang ARCH=${{ matrix.arch }} EXE=fairy-stockfish_${{ matrix.arch }} && strip fairy-stockfish_${{ matrix.arch }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stockfish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
run:
working-directory: src
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
os: [ubuntu-24.04, windows-2022, macos-14]

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

# Used to host cibuildwheel
- uses: actions/setup-python@v6
Expand All @@ -43,7 +43,7 @@ jobs:
name: Build source distribution
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/setup-python@v6
with:
python-version: '3.9'
Expand Down
Loading