From ea7965034d199ae24833708743ce206b8082722e Mon Sep 17 00:00:00 2001 From: Andrew Bird Date: Sun, 18 Feb 2024 15:40:57 +0000 Subject: [PATCH] CI: Update to use current builtin actions Older actions use deprecated node12/node16, so update to avoid the warning. --- .github/workflows/ci-build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 5fc205f..ddbaa92 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: package install run: ./ci_prereq.sh @@ -36,7 +36,7 @@ jobs: - name: deploy if: github.ref == 'refs/heads/master' - uses: peaceiris/actions-gh-pages@v3 + uses: peaceiris/actions-gh-pages@v4 with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_branch: gh-pages