Skip to content

Commit

Permalink
update checkout actions to avoid deprecation warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
davidcarlisle committed Apr 14, 2024
1 parent fe8eb8f commit c19880a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.
Expand Down

0 comments on commit c19880a

Please sign in to comment.