Skip to content

Commit

Permalink
ci: upgrade action version (#157)
Browse files Browse the repository at this point in the history
  • Loading branch information
LogCreative authored Nov 25, 2023
1 parent 651ec54 commit 1afa5c0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
build-xelatex:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
name: checkout code
- uses: xu-cheng/texlive-action/full@v1
with:
Expand All @@ -33,7 +33,7 @@ jobs:
- run: cat build/build-*.log
name: display build log
if: ${{ failure() || success() }}
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
path: |
build/build-*.pdf
Expand All @@ -43,7 +43,7 @@ jobs:
build-lualatex:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
name: checkout code
- uses: xu-cheng/texlive-action/full@v1
with:
Expand All @@ -56,7 +56,7 @@ jobs:
- run: cat build/*.log
name: display build log
if: ${{ failure() || success() }}
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
path: |
build/build-*.pdf
Expand All @@ -66,7 +66,7 @@ jobs:
build-package:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
name: checkout code
- uses: xu-cheng/texlive-action/full@v1
with:
Expand All @@ -80,7 +80,7 @@ jobs:
- name: check if generated files are of latest version
run: |
git diff --exit-code
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
path: |
src/build/distrib/tds/doc
Expand All @@ -92,7 +92,7 @@ jobs:
check-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
name: checkout code
- uses: xu-cheng/texlive-action/full@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/contrib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
# need to be approved by one of the collaborators
environment: IMGUR
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
name: checkout code
with:
fetch-depth: 0
Expand All @@ -46,7 +46,7 @@ jobs:
sed -i "s|<policy domain=\"coder\" rights=\"none\" pattern=\"PDF\" />|<policy domain=\"coder\" rights=\"read\|write\" pattern=\"PDF\" />|g" /etc/ImageMagick-*/policy.xml
.github/ci/build_contrib.sh -halt-on-error -time -xelatex
name: build contrib doc with XeLaTeX
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
path: |
build/contrib.*.pdf
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
release-xelatex:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
name: checkout code
- uses: xu-cheng/texlive-action/full@v1
with:
Expand Down

0 comments on commit 1afa5c0

Please sign in to comment.