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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
target: ${{ matrix.target }}
override: true
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v6
- name: Check
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@v4
uses: actions/checkout@v6
- name: Install linker
if: matrix.target == 'i686-unknown-linux-gnu'
run: |
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
target: ${{ matrix.target }}
override: true
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Check
env:
CARGO_BUILD_TARGET: ${{ matrix.target }}
Expand All @@ -125,7 +125,7 @@ jobs:
target: ${{ matrix.target }}
override: true
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Install WasmTime
run: |
curl https://wasmtime.dev/install.sh -sSf | bash
Expand All @@ -146,6 +146,6 @@ jobs:
toolchain: nightly
override: true
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Test
run: make test
2 changes: 1 addition & 1 deletion .github/workflows/clippy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

runs-on: ${{ matrix.target }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/minver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
continue-on-error: true

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rustfmt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
Expand Down
Loading