Skip to content

Commit 5cea2bb

Browse files
authored
Merge pull request #13 from fpco/update-pid1
chore: Bump Rust edition and all dependencies
2 parents 3139cf0 + 58fa1bf commit 5cea2bb

File tree

7 files changed

+452
-245
lines changed

7 files changed

+452
-245
lines changed

.github/workflows/release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ jobs:
2727
- uses: actions/checkout@v2
2828
- uses: taiki-e/install-action@v2
2929
with:
30-
tool: just@1.25.2,cross@0.2.5
30+
tool: just@1.40.0,cross@0.2.5
3131
- uses: Swatinem/rust-cache@v2
3232
with:
3333
key: ${{ runner.os }}-${{ hashFiles('Cargo.lock') }}-${{ matrix.toolchain }}
3434
- uses: dtolnay/rust-toolchain@master
3535
with:
36-
toolchain: 1.77.2
36+
toolchain: 1.88.0
3737
targets: x86_64-unknown-linux-musl,aarch64-unknown-linux-musl
3838
- name: Install musl tools
3939
run: |
@@ -42,12 +42,12 @@ jobs:
4242
run: just build-binaries
4343
- name: Generate artifacts
4444
run: just release-artifacts
45-
- uses: actions/upload-artifact@v3
45+
- uses: actions/upload-artifact@v4
4646
with:
4747
name: binaries
4848
path: artifacts/*
4949
- name: Release
50-
uses: softprops/action-gh-release@v1
50+
uses: softprops/action-gh-release@v2
5151
if: startsWith(github.ref, 'refs/tags/')
5252
with:
5353
files: artifacts/*

.github/workflows/rust.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ jobs:
2525
- macos-latest
2626

2727
toolchain:
28-
- 1.77.2
28+
- 1.88.0
2929
- stable
3030
- nightly
3131

3232
steps:
3333
- uses: actions/checkout@v4
34-
- uses: extractions/setup-just@v1
34+
- uses: taiki-e/install-action@v2
3535
with:
36-
just-version: 1.25.2
36+
tool: just@1.40.0
3737
- uses: dtolnay/rust-toolchain@master
3838
with:
3939
toolchain: ${{ matrix.toolchain }}
@@ -49,3 +49,4 @@ jobs:
4949
run: |
5050
just cargo-clippy-check
5151
just cargo-fmt-check
52+
if: matrix.toolchain == '1.88.0'

0 commit comments

Comments
 (0)