Skip to content

Commit 5d735a3

Browse files
committed
use major version tags of all used actions, upgrade to new versions of checkout, cargo-install, setup-typst (cache-apt-pkgs-action has a latest tag, but use v1 to avoid upgrading beyond major releases automatically)
1 parent 85a71fc commit 5d735a3

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,35 +10,35 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v4
1414

1515
- name: Probe runner package cache
16-
uses: awalsh128/cache-apt-pkgs-action@latest
16+
uses: awalsh128/cache-apt-pkgs-action@v1
1717
with:
1818
packages: imagemagick cargo
1919
version: 1.0
2020

2121
- name: Install oxipng from crates.io
22-
uses: baptiste0928/cargo-install@v2.2.0
22+
uses: baptiste0928/cargo-install@v3
2323
with:
2424
crate: oxipng
2525

2626
- name: Install just from crates.io
27-
uses: baptiste0928/cargo-install@v2.2.0
27+
uses: baptiste0928/cargo-install@v3
2828
with:
2929
crate: just
3030

3131
- name: Install typst-test from github
32-
uses: baptiste0928/cargo-install@v2.2.0
32+
uses: baptiste0928/cargo-install@v3
3333
with:
3434
crate: typst-test
3535
git: https://github.com/tingerrr/typst-test.git
3636
tag: ci-semi-stable
3737

3838
- name: Setup typst
39-
uses: yusancky/setup-typst@v2
39+
uses: typst-community/setup-typst@v3
4040
with:
41-
version: 'v0.11.0'
41+
typst-version: '0.11'
4242

4343
- name: Run test suite
4444
run: just ci

0 commit comments

Comments
 (0)