Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump actions/checkout from 4.1.7 to 4.2.2 #760

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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/coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
branches:
- main
pull_request:
path:

Check warning on line 9 in .github/workflows/coverage.yaml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 unexpected key "path" for "pull_request" section. expected one of "branches", "branches-ignore", "paths", "paths-ignore", "tags", "tags-ignore", "types", "workflows" [syntax-check] Raw Output: .github/workflows/coverage.yaml:9:5: unexpected key "path" for "pull_request" section. expected one of "branches", "branches-ignore", "paths", "paths-ignore", "tags", "tags-ignore", "types", "workflows" [syntax-check]
- '**/*.rs'
- '**/*.txt'
- '**/Cargo.toml'
Expand All @@ -23,7 +23,7 @@
RUST_BACKTRACE: full

steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.2
with:
persist-credentials: false

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@
runs-on: ubuntu-latest
steps:
- name: Checkout the source code
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.2
with:
persist-credentials: false

- name: Install latest beta
uses: actions-rs/toolchain@v1

Check warning on line 44 in .github/workflows/docs.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] reported by reviewdog 🐶 the runner of "actions-rs/toolchain@v1" action is too old to run on GitHub Actions. update the action's version to fix this issue [action] Raw Output: .github/workflows/docs.yml:44:15: the runner of "actions-rs/toolchain@v1" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
with:
toolchain: beta
components: rust-docs
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.2
- uses: actions-rs/toolchain@v1.0.7
with:
toolchain: beta
Expand All @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.2
# Re-resolve Cargo.lock with minimal versions.
# This only works with nightly. We pin to a specific version because
# newer versions use lock file version 4, but the MSRV cargo does not
Expand All @@ -51,7 +51,7 @@ jobs:
# runs-on: ubuntu-latest

# steps:
# - uses: actions/checkout@v4.1.7
# - uses: actions/checkout@v4.2.2
# - uses: dtolnay/rust-toolchain@stable
# - run: cargo install cargo-all-features
# # We check and then test because some test dependencies could help
Expand All @@ -71,7 +71,7 @@ jobs:
matrix:
crate: [ristretto255, ed25519, p256, secp256k1, rerandomized]
steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.2
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
Expand All @@ -84,7 +84,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.2
- uses: actions-rs/toolchain@v1.0.7
with:
toolchain: beta
Expand All @@ -99,7 +99,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.2
with:
persist-credentials: false

Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.2
with:
persist-credentials: false

Expand All @@ -156,7 +156,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.2
with:
persist-credentials: false

Expand All @@ -178,7 +178,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.2
with:
persist-credentials: false

Expand All @@ -197,7 +197,7 @@ jobs:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.2
- uses: reviewdog/action-actionlint@v1.54.0
with:
level: warning
Expand Down
Loading