From c19880a65827fd9423c67c26efee13283fc104b3 Mon Sep 17 00:00:00 2001 From: David Carlisle Date: Sun, 14 Apr 2024 10:45:39 +0100 Subject: [PATCH] update checkout actions to avoid deprecation warnings --- .github/workflows/deploy.yaml | 5 +++-- .github/workflows/main.yaml | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 5c8e055..5102eb6 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -14,7 +14,7 @@ jobs: steps: # Boilerplate - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 # GitHub Actions don't regenerate the test if the key doesn't change, so # we integrate a random UUID into the key to keep them different. # DO NOT CHANGE THIS @@ -36,7 +36,8 @@ jobs: key: texlive-v0-${{ steps.get-id.outputs.id }} restore-keys: texlive-v0- - name: Install TeX Live - uses: zauguin/install-texlive@v1 + id: texlive + uses: zauguin/install-texlive@v3 with: # List the required TeX Live packages in a separate file to allow reuse in # different workflows. diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index ab5b509..8dd6c30 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -12,7 +12,7 @@ jobs: steps: # Boilerplate - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 # GitHub Actions don't regenerate the test if the key doesn't change, so # we integrate a random UUID into the key to keep them different. # DO NOT CHANGE THIS @@ -34,7 +34,8 @@ jobs: key: texlive-v0-${{ steps.get-id.outputs.id }} restore-keys: texlive-v0- - name: Install TeX Live - uses: zauguin/install-texlive@v1 + id: texlive + uses: zauguin/install-texlive@v3 with: # List the required TeX Live packages in a separate file to allow reuse in # different workflows.