From 430c6d54d2c4e67e0cf8a4d2f125f3cd6ecd83ae Mon Sep 17 00:00:00 2001 From: Eldred Habert Date: Tue, 2 Jan 2024 14:30:20 +0100 Subject: [PATCH] Update CI to stop using Node 12 actions 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') }}