From f4e46c609c9d5967b00ebb7a1f6a3860f45b43ad Mon Sep 17 00:00:00 2001 From: Eldred Habert Date: Tue, 2 Jan 2024 14:40:09 +0100 Subject: [PATCH] Update CI to stop using Node 12 actions (#527) See https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/ --- .github/workflows/build-and-deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-deploy.yml b/.github/workflows/build-and-deploy.yml index 9e3c6c78..bfec8c6d 100644 --- a/.github/workflows/build-and-deploy.yml +++ b/.github/workflows/build-and-deploy.yml @@ -37,7 +37,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout pandocs - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: path: pandocs @@ -62,7 +62,7 @@ jobs: pip install -r pandocs/requirements.txt - name: Cache build dir - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: pandocs/target/ key: ${{ runner.os }}-build-${{ hashFiles('pandocs/Cargo.lock') }}