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

Bump actions/checkout from 2 to 3.1.0 #32

Open
wants to merge 1 commit into
base: master
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/audit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
name: Rustsec Audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0
- uses: actions-rs/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
rust: ["stable", "nightly"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0
- name: "Install/Update the Rust version"
run: |
rustup toolchain install ${{ matrix.rust }} --profile minimal --component clippy
Expand All @@ -50,7 +50,7 @@ jobs:
rust:
- stable
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0
- name: "Install/Update the Rust version"
run: |
rustup toolchain install ${{ matrix.rust }} --profile minimal --component rustfmt
Expand All @@ -72,7 +72,7 @@ jobs:
crate: ["serde_with", "serde_with_macros", "serde_with_test"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0
- name: "Install/Update the Rust version"
run: |
rustup toolchain install ${{ matrix.rust }} --profile minimal
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-crates-io.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/v')
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0
- name: "Install/Update the Rust version"
run: |
rustup toolchain install stable --profile minimal
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/macros-v')
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0
- name: "Install/Update the Rust version"
run: rustup toolchain install stable --profile minimal
rustup default stable
Expand Down