Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/checkout from 3 to 4 #825

Merged
merged 4 commits into from
Oct 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: LaTeX linter (chktex)
uses: j2kun/[email protected]
# Provide this output for context, but don't fail builds
Expand All @@ -19,10 +19,10 @@ jobs:
build-rulebook:

runs-on: ubuntu-latest
container: blang/latex:ubuntu
container: leplusorg/latex:latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: LaTeX compilation
run:
TERM=xterm make dorulebookonly
Expand All @@ -36,10 +36,10 @@ jobs:
build-scoresheets:

runs-on: ubuntu-latest
container: blang/latex:ubuntu
container: leplusorg/latex:latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: LaTeX compilation
run:
TERM=xterm make doscoresheetsonly
Expand All @@ -56,7 +56,7 @@ jobs:
contents: write
needs: [build-rulebook, build-scoresheets]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: gh-pages
- name: Download rulebook
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: LaTeX linter (chktex)
uses: j2kun/[email protected]
# Provide this output for context, but don't fail builds
Expand All @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
container: blang/latex:ubuntu
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: LaTeX compilation Rulebook
run:
TERM=xterm make dorulebookonly
Expand Down