Skip to content

Commit

Permalink
[github workflow] update checkout action to v3 (by Yukai Chou)
Browse files Browse the repository at this point in the history
actions/checkout@v2 runs on node 12 which will soon be deprecated, see
* warnings thrown by a successful workflow run https://github.com/TeX-Live/texlive-source/actions/runs/4286775989
* GitHub blog https://github.blog/changelog/2022-09-22-github-actions-all-actions-will-begin-running-on-node16-instead-of-node12/

Patch thanks to Yukai Chou <[email protected]>
see #60

git-svn-id: svn://tug.org/texlive/trunk/Build/source@66249 c570f23f-e606-0410-a88d-b1316a301751
  • Loading branch information
norbusan committed Feb 28, 2023
1 parent 598b65b commit 8d6a81a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ jobs:
name: i386-linux build job
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: TeX-Live/tl-build-docker-action
ref: v4
Expand All @@ -64,9 +64,9 @@ jobs:
name: x86_64-linux build job
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: TeX-Live/tl-build-docker-action
ref: v4
Expand All @@ -91,9 +91,9 @@ jobs:
name: x86_64-linuxmusl build job
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: TeX-Live/tl-build-docker-action
ref: v4
Expand Down

0 comments on commit 8d6a81a

Please sign in to comment.