Skip to content

Commit

Permalink
Bump upload-action to v4 (#450)
Browse files Browse the repository at this point in the history
  • Loading branch information
KennanHunter authored Oct 23, 2024
1 parent e2267d6 commit 594afc7
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
push:
branches:
- "*"

jobs:
build-html:
runs-on: ubuntu-latest
Expand All @@ -25,10 +26,11 @@ jobs:
run: |
make html
- name: Archive HTML
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: gm0-html
path: build/html/

build-pdf:
runs-on: ubuntu-latest
steps:
Expand All @@ -47,10 +49,11 @@ jobs:
run: |
make latexpdf
- name: Archive PDF
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: gm0-pdf
path: build/latex/GameManual0.pdf

check-links:
runs-on: ubuntu-latest
steps:
Expand All @@ -67,10 +70,11 @@ jobs:
make linkcheckdiff
- name: Archive Linkcheck Failure
if: ${{ failure() }}
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: linkcheck-output.txt
path: build/linkcheck/output.txt

check-linting:
runs-on: ubuntu-latest
steps:
Expand All @@ -84,6 +88,7 @@ jobs:
- name: Check Lint
run: |
make lint
check-spelling:
runs-on: ubuntu-latest
steps:
Expand All @@ -93,6 +98,7 @@ jobs:
with:
locale: "US"
reporter: "github-check"

check-redirects:
runs-on: ubuntu-latest
steps:
Expand All @@ -109,6 +115,7 @@ jobs:
- name: Check redirects
run: |
make rediraffecheckdiff
check-unicode-characters:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 594afc7

Please sign in to comment.