mirror of
https://github.com/moderncv/moderncv.git
synced 2026-02-06 10:05:19 +01:00
Update GitHub actions
Update actions/checkout and actions/upload-artifact from v2 to v3 The v2 versions were Node.js 12 actions, which have been depreciated in favor of Node.js 16 actions
This commit is contained in:
parent
876d7884f2
commit
dabc0a24cf
1 changed files with 3 additions and 3 deletions
6
.github/workflows/build-pdf.yml
vendored
6
.github/workflows/build-pdf.yml
vendored
|
|
@ -16,20 +16,20 @@ jobs:
|
|||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Build pdf
|
||||
run: latexmk -pdflua ./template.tex
|
||||
|
||||
- name: Upload pdf
|
||||
uses: actions/upload-artifact@v2
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: template.pdf
|
||||
path: ./template.pdf
|
||||
|
||||
- name: Upload log
|
||||
if: ${{ always() }}
|
||||
uses: actions/upload-artifact@v2
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: template.log
|
||||
path: ./template.log
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue