Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
options: --user root
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

# 実際のビルドは `bin/build.sh` を実行している
- name: Build
Expand All @@ -53,7 +53,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

# ビルドジョブでアップロードしたPDFをここでダウンロード
- name: Download artifact
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup node environment
uses: actions/setup-node@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/remove_depbot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
steps:
# get main branch repo contents
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5

# remove files not needed for user instance of template
- name: Remove unneeded files
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
options: --user root
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Test Docker Image with luaLaTeX
run: latexmk -pdf -e '$pdf_mode=4' main.tex
Expand Down
Loading