Skip to content
Closed
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/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
if: github.event_name == 'pull_request'
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- run: cargo install --debug jas@0.3.0
- run: >
jas install
Expand All @@ -29,7 +29,7 @@ jobs:
if: github.event_name == 'pull_request'
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- run: cargo install --debug jas@0.3.0
- run: >
jas install
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
timeout-minutes: 15

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- run: rustup update stable
- run: rustup default stable
- uses: actions/cache@v4
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
if: github.event_name == 'pull_request'
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- run: cargo install --debug jas@0.3.0
- run: >
jas install
Expand All @@ -69,7 +69,7 @@ jobs:
if: github.event_name == 'pull_request'
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- run: rustup update stable
- run: rustup default stable
- run: rustup component add rustfmt
Expand All @@ -80,7 +80,7 @@ jobs:
if: github.event_name == 'pull_request'
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- run: rustup update stable
- run: rustup default stable
- run: cargo clippy --all --all-features -- -D warnings
2 changes: 1 addition & 1 deletion .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

# Not using non-official GitHub Actions for security reasons.
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- run: rustup update stable
- run: rustup default stable
- uses: actions/cache@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- run: |
rustup update stable
Expand Down
Loading