Skip to content
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
10 changes: 4 additions & 6 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- run: cargo install --debug --git https://github.com/rikhuijzer/jas
- run: cargo install --debug jas@0.3.0
- run: >
jas install
--gh rustsec/rustsec@cargo-audit/v0.21.2
Expand All @@ -30,12 +30,10 @@ jobs:
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- run: cargo install --debug --git https://github.com/rikhuijzer/jas
- run: cargo install --debug jas@0.3.0
- run: >
jas install
--gh EmbarkStudios/cargo-deny@0.18.2
--sha 43c4a79c4b9fd1fcb3dddb305a1b4d8f7ac4a72accd61bb50a0b698789ca894c
# Using GITHUB_TOKEN because the tests make lots of requests and may hit rate limits.
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: cargo-deny check advisories
--gh-token ${{ secrets.GITHUB_TOKEN }}
- run: cargo-deny check advisories
9 changes: 3 additions & 6 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
with:
path: ~/.cache/typst
key: typst
- run: cargo install --debug jas@0.2.0
- run: cargo install --debug jas@0.3.0
- run: >
jas install
--gh typst/typst@v0.13.1
Expand All @@ -37,10 +37,7 @@ jobs:
- run: >
jas install
--url https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz
--sha abda8d77ce8309141f83ab8edf0596834087c52467f6badf376a6a2a4c87cf67
- run: >
jas install
--url https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz
--archive-filename ffmpeg
--archive-filename ffprobe
--sha abda8d77ce8309141f83ab8edf0596834087c52467f6badf376a6a2a4c87cf67
- run: |
Expand All @@ -59,7 +56,7 @@ jobs:
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- run: cargo install --debug --git https://github.com/rikhuijzer/jas
- run: cargo install --debug jas@0.3.0
- run: >
jas install
--gh crate-ci/typos@v1.31.1
Expand Down
11 changes: 5 additions & 6 deletions .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,11 @@ jobs:
- run: |
echo "DEEPINFRA_KEY=${{ secrets.DEEPINFRA_KEY }}" > keys.env
echo "GOOGLE_KEY=${{ secrets.GOOGLE_KEY }}" >> keys.env
- run: cargo install --debug --git https://github.com/rikhuijzer/jas
- run: |
jas install --gh typst/typst@v0.13.1 \
--sha 7d214bfeffc2e585dc422d1a09d2b144969421281e8c7f5d784b65fc69b5673f
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: cargo install --debug jas@0.3.0
- run: >
jas install --gh typst/typst@v0.13.1
--sha 7d214bfeffc2e585dc422d1a09d2b144969421281e8c7f5d784b65fc69b5673f
--gh-token ${{ secrets.GITHUB_TOKEN }}
- run: |
mkdir _public
echo "<html><body><h1>Home page for the examples</h1></body></html>" > _public/index.html
Expand Down