Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Install Rust
run: |
rustup toolchain install ${RUST_VERSION} --profile minimal --no-self-update
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
create-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: taiki-e/create-gh-release-action@v1
with:
changelog: CHANGELOG.md
Expand All @@ -29,7 +29,7 @@ jobs:
os: windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- run: |
rustup toolchain install ${RUST_VERSION} --profile minimal --no-self-update
rustup default ${RUST_VERSION}
Expand All @@ -49,7 +49,7 @@ jobs:
env:
RUST_VERSION: 1.82.0 # cargo-generate-rpm depends on indexmap@2.12.0, which requires rustc 1.82
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- run: |
sudo apt-get install -y musl-dev musl-tools
rustup toolchain install ${RUST_VERSION} --profile minimal --no-self-update
Expand Down