Bump github-actions dependencies (#850)
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Fri, 27 Dec 2024 18:24:44 +0000 (19:24 +0100)
committerGitHub <noreply@github.com>
Fri, 27 Dec 2024 18:24:44 +0000 (19:24 +0100)
.github/workflows/fairy.yml
.github/workflows/ffishjs.yml
.github/workflows/release.yml
.github/workflows/stockfish.yml
.github/workflows/wheels.yml

index 6dd8ae7..93789a2 100644 (file)
@@ -36,7 +36,7 @@ jobs:
       run:
         working-directory: src
     steps:
-      - uses: actions/checkout@v3
+      - uses: actions/checkout@v4
         with:
           fetch-depth: 0
 
index 612e027..e02c7fc 100644 (file)
@@ -19,19 +19,19 @@ jobs:
         node-version: [12.x]
 
     steps:
-      - uses: actions/checkout@v3
+      - uses: actions/checkout@v4
       - name: Setup cache
         id: cache-system-libraries
-        uses: actions/cache@v2
+        uses: actions/cache@v4
         with:
           path: ${{env.EM_CACHE_FOLDER}}
           key: emsdk-${{env.EM_VERSION}}-${{ runner.os }}
-      - uses: mymindstorm/setup-emsdk@v7
+      - uses: mymindstorm/setup-emsdk@v14
         with:
           version: ${{env.EM_VERSION}}
           actions-cache-folder: ${{env.EM_CACHE_FOLDER}}
       - name: Use Node.js ${{ matrix.node-version }}
-        uses: actions/setup-node@v1
+        uses: actions/setup-node@v4
         with:
           node-version: ${{ matrix.node-version }}
       - name: Build ffishjs
index 889814f..4225284 100644 (file)
@@ -14,13 +14,13 @@ jobs:
     runs-on: windows-2022
 
     steps:
-      - uses: al-cheb/configure-pagefile-action@v1.2   
+      - uses: al-cheb/configure-pagefile-action@v1.4   
         with:  
             minimum-size: 16GB
             maximum-size: 16GB
             disk-root: "C:"
 
-      - uses: actions/checkout@v3
+      - uses: actions/checkout@v4
 
       - 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
@@ -44,7 +44,7 @@ jobs:
     runs-on: ubuntu-20.04
 
     steps:
-      - uses: actions/checkout@v3
+      - uses: actions/checkout@v4
 
       - 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 }}
index 7a66034..a1efcdf 100644 (file)
@@ -39,7 +39,7 @@ jobs:
       run:
         working-directory: src
     steps:
-      - uses: actions/checkout@v3
+      - uses: actions/checkout@v4
         with:
           fetch-depth: 0
 
index a45e593..03a6894 100644 (file)
@@ -17,7 +17,7 @@ jobs:
         os: [ubuntu-20.04, windows-2019, macos-13]
 
     steps:
-      - uses: actions/checkout@v3
+      - uses: actions/checkout@v4
 
       # Used to host cibuildwheel
       - uses: actions/setup-python@v3
@@ -43,7 +43,7 @@ jobs:
     name: Build source distribution
     runs-on: ubuntu-20.04
     steps:
-      - uses: actions/checkout@v3
+      - uses: actions/checkout@v4
       - uses: actions/setup-python@v3
         with:
           python-version: '3.8'
@@ -51,7 +51,7 @@ jobs:
       - name: Build sdist
         run: python setup.py sdist
 
-      - uses: actions/upload-artifact@v3.0.0
+      - uses: actions/upload-artifact@v3
         with:
           name: dist
           path: dist/*.tar.gz