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 #147

Merged
merged 1 commit into from Jan 14, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Expand Up @@ -27,7 +27,7 @@ jobs:
target: ${{ matrix.target }}
override: true
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Build
env:
CARGO_BUILD_TARGET: ${{ matrix.target }}
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
target: ${{ matrix.target }}
override: true
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Install linker
if: matrix.target == 'i686-unknown-linux-gnu'
run: |
Expand All @@ -96,7 +96,7 @@ jobs:
target: ${{ matrix.target }}
override: true
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Check
env:
CARGO_BUILD_TARGET: ${{ matrix.target }}
Expand All @@ -111,6 +111,6 @@ jobs:
toolchain: nightly
override: true
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Test
run: make test
2 changes: 1 addition & 1 deletion .github/workflows/clippy.yml
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/minver.yml
Expand Up @@ -9,7 +9,7 @@ jobs:
continue-on-error: true

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rustfmt.yml
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
Expand Down