From 280a4baab34d51b0779a334fea9ca6b25028c6d9 Mon Sep 17 00:00:00 2001 From: TheYoBots Date: Fri, 18 Mar 2022 16:35:33 +0000 Subject: [PATCH] Update GitHub Actions - actions/checkout@v2 to actions/checkout@v3 : https://github.com/actions/checkout/releases/tag/v3.0.0 - actions/upload-artifact@v2 to actions/upload-artifact@v3 : https://github.com/actions/upload-artifact/releases/tag/v3.0.0 --- .github/workflows/fairy.yml | 2 +- .github/workflows/ffishjs.yml | 2 +- .github/workflows/release.yml | 8 ++++---- .github/workflows/stockfish.yml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/fairy.yml b/.github/workflows/fairy.yml index 7751597..6dd8ae7 100644 --- a/.github/workflows/fairy.yml +++ b/.github/workflows/fairy.yml @@ -36,7 +36,7 @@ jobs: run: working-directory: src steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 diff --git a/.github/workflows/ffishjs.yml b/.github/workflows/ffishjs.yml index b26553f..612e027 100644 --- a/.github/workflows/ffishjs.yml +++ b/.github/workflows/ffishjs.yml @@ -19,7 +19,7 @@ jobs: node-version: [12.x] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Setup cache id: cache-system-libraries uses: actions/cache@v2 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a2415eb..67177e4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: runs-on: windows-2022 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - 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 @@ -22,7 +22,7 @@ jobs: - name: make largeboards run: cd src && make clean && make -j build COMP=mingw ARCH=${{ matrix.arch }} EXE=fairy-stockfish-largeboards_${{ matrix.arch }}.exe largeboards=yes && strip fairy-stockfish-largeboards_${{ matrix.arch }}.exe - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: name: fairy-stockfish path: src/fairy-stockfish*.exe @@ -34,7 +34,7 @@ jobs: runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - 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 }} @@ -42,7 +42,7 @@ jobs: - name: make largeboards run: cd src && make clean && make -j build COMP=gcc ARCH=${{ matrix.arch }} EXE=fairy-stockfish-largeboards_${{ matrix.arch }} largeboards=yes && strip fairy-stockfish-largeboards_${{ matrix.arch }} - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: name: fairy-stockfish path: src/fairy-stockfish* \ No newline at end of file diff --git a/.github/workflows/stockfish.yml b/.github/workflows/stockfish.yml index 8970fcd..5ed84b4 100644 --- a/.github/workflows/stockfish.yml +++ b/.github/workflows/stockfish.yml @@ -39,7 +39,7 @@ jobs: run: working-directory: src steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 -- 1.7.0.4