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
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
name: Lint / Code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions-rs/toolchain@v1
with:
components: rustfmt, clippy
Expand All @@ -38,7 +38,7 @@ jobs:
name: Lint / Dependencies
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions-rs/toolchain@v1
- uses: cargo-bins/cargo-binstall@main
- run: cargo binstall cargo-deny -y
Expand Down Expand Up @@ -66,8 +66,8 @@ jobs:
# ToDo: remove one of the checkout actions
# Currently it will cause pipeline failure:
# https://github.com/kamu-data/kamu-node/actions/runs/13438038265/job/37545092136
- uses: actions/checkout@v5
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/checkout@v6
with:
repository: kamu-data/kamu-contracts
path: kamu-contracts
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
target:
- x86_64-unknown-linux-gnu
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
# Check out the specified branch
with:
ref: ${{ github.event.inputs.branch }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
github.event.workflow_run.conclusion == 'success' ||
github.event.workflow_run.conclusion == null
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
# Checkout the same commit that the release was built for
ref: ${{ github.event.workflow_run.head_sha }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
target:
- x86_64-unknown-linux-gnu
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions-rs/toolchain@v1 # Uses rust-toolchain file
with:
components: rustfmt
Expand Down
Loading