Skip to content

Commit e00a96a

Browse files
committed
ci: update actions to latest major versions
Update GitHub Actions in release and watch workflows: - Bump actions/checkout from v4 to v6 for improved performance and security. - Bump actions/upload-artifact from v4 to v7 for latest features and fixes. This ensures workflows use the most up-to-date and supported actions.
1 parent 264e07a commit e00a96a

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
contents: write
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v6
1414
with:
1515
fetch-depth: 0
1616
fetch-tags: true
@@ -23,7 +23,7 @@ jobs:
2323
- name: Build PDF with PDF/UA-1
2424
run: typst compile --pdf-standard ua-1 undergradmath.typ
2525
- name: Upload PDF as artifact
26-
uses: actions/upload-artifact@v4
26+
uses: actions/upload-artifact@v7
2727
with:
2828
name: Undergradmath
2929
path: undergradmath.pdf

.github/workflows/watch.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
modified: ${{ contains(steps.changed-files.outputs.modified_files, 'undergradmath.typ') }}
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v4
14+
uses: actions/checkout@v6
1515
- name: Check changed files
1616
id: changed-files
1717
uses: tj-actions/changed-files@v46
@@ -24,7 +24,7 @@ jobs:
2424
if: needs.check-changed.outputs.modified == 'true'
2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v6
2828
- name: Update Homebrew
2929
run: brew update
3030
- name: Install Typst
@@ -34,7 +34,7 @@ jobs:
3434
- name: Build PDF with PDF/UA-1
3535
run: typst compile --pdf-standard ua-1 undergradmath.typ
3636
- name: Upload PDF as artifact
37-
uses: actions/upload-artifact@v4
37+
uses: actions/upload-artifact@v7
3838
with:
3939
name: Undergradmath
4040
path: undergradmath.pdf

0 commit comments

Comments
 (0)