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
2 changes: 1 addition & 1 deletion .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
pull_request: {}

jobs:
test:

Check warning on line 7 in .github/workflows/changelog.yml

View workflow job for this annotation

GitHub Actions / zizmor

excessive-permissions

changelog.yml:7: overly broad permissions: default permissions used due to no permissions: block
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v6

Check warning on line 10 in .github/workflows/changelog.yml

View workflow job for this annotation

GitHub Actions / zizmor

artipacked

changelog.yml:10: credential persistence through GitHub Actions artifacts: does not set persist-credentials: false
with:
fetch-depth: 0
- run: bash -c "! git diff --exit-code origin/master... CHANGELOG.md"
4 changes: 2 additions & 2 deletions .github/workflows/esprc.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: esprc

Check warning on line 1 in .github/workflows/esprc.yml

View workflow job for this annotation

GitHub Actions / zizmor

excessive-permissions

esprc.yml:1: overly broad permissions: default permissions used due to no permissions: block

on:
push:
Expand All @@ -7,7 +7,7 @@
pull_request: {}

jobs:
parse:

Check warning on line 10 in .github/workflows/esprc.yml

View workflow job for this annotation

GitHub Actions / zizmor

excessive-permissions

esprc.yml:10: overly broad permissions: default permissions used due to no permissions: block
runs-on: ubuntu-20.04
strategy:
matrix:
Expand All @@ -15,8 +15,8 @@
- "201"
- "203"
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v6

Check warning on line 18 in .github/workflows/esprc.yml

View workflow job for this annotation

GitHub Actions / zizmor

artipacked

esprc.yml:18: credential persistence through GitHub Actions artifacts: does not set persist-credentials: false
- uses: actions-rs/toolchain@v1

Check warning on line 19 in .github/workflows/esprc.yml

View workflow job for this annotation

GitHub Actions / zizmor

archived-uses

esprc.yml:19: action or reusable workflow from archived repository: repository is archived
with:
toolchain: "1.56.0"
profile: minimal
Expand All @@ -27,7 +27,7 @@
command: run
args: --release --bin esprc -- ./schemas/APs/10303-${{ matrix.ap }}-aim-long.exp --check

generate:

Check warning on line 30 in .github/workflows/esprc.yml

View workflow job for this annotation

GitHub Actions / zizmor

excessive-permissions

esprc.yml:30: overly broad permissions: default permissions used due to no permissions: block
runs-on: ubuntu-20.04
strategy:
matrix:
Expand All @@ -35,7 +35,7 @@
- "201"
- "203"
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v6

Check warning on line 38 in .github/workflows/esprc.yml

View workflow job for this annotation

GitHub Actions / zizmor

artipacked

esprc.yml:38: credential persistence through GitHub Actions artifacts: does not set persist-credentials: false
- uses: actions-rs/toolchain@v1
with:
toolchain: "1.56.0"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
pages:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v6
- uses: actions-rs/toolchain@v1
with:
toolchain: "1.56.0"
Expand All @@ -21,7 +21,7 @@ jobs:
command: doc
args: --no-deps --all-features
- name: Deploy GitHub Pages
uses: peaceiris/actions-gh-pages@v3
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./target/doc
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- stable
- "1.56.0" # MSRV (for edition 2021)
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v6
- uses: actions-rs/toolchain@v1
with:
profile: minimal
Expand All @@ -32,7 +32,7 @@ jobs:
check-format:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v6
- uses: actions-rs/toolchain@v1
with:
toolchain: "1.56.0"
Expand All @@ -48,7 +48,7 @@ jobs:
doc:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v6
- uses: actions-rs/toolchain@v1
with:
toolchain: "1.56.0"
Expand All @@ -63,7 +63,7 @@ jobs:
clippy:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v6
- uses: actions-rs/toolchain@v1
with:
toolchain: "1.56.0"
Expand Down
Loading