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/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,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 Down Expand Up @@ -48,13 +48,13 @@ jobs:
name: Lint / Codegen
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
repository: kamu-data/kamu-cli
path: kamu-cli
- name: Copy rust-toolchain file
run: cp kamu-cli/rust-toolchain ./rust-toolchain
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
repository: open-data-fabric/open-data-fabric
path: open-data-fabric
Expand All @@ -78,7 +78,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 @@ -180,7 +180,7 @@ jobs:
sudo rm -rf /opt/ghc
sudo rm -rf /opt/hostedtoolcache/CodeQL

- uses: actions/checkout@v5
- uses: actions/checkout@v6

- uses: actions-rs/toolchain@v1

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/copilot-setup-steps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

# Keep this minimal; add more only when Copilot hits missing native deps.
- name: Install system dependencies (common Rust)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-images-with-data.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
name: Build Images With Data
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
# Checkout the same commit that the release was built for
ref: ${{ inputs.release_sha }}
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 @@ -23,7 +23,7 @@ jobs:
github.event.workflow_run.conclusion == null ||
github.event_name == 'workflow_dispatch'
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
# Checkout the same commit that the release was built for (workflow_run)
# OR the manually specified SHA (workflow_dispatch)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-test-installer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,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
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
# This will be replaced with `cross` for cross-compilation targets
CARGO: cargo
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- uses: actions-rs/toolchain@v1 # Uses rust-toolchain file
with:
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
target/${{ matrix.target }}/release/${{ env.PACKAGE_NAME }}${{ matrix.binary-ext }} \
target/${{ matrix.target }}/release/${{ env.BINARY_NAME }}${{ matrix.binary-ext }}

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v6
with:
name: ${{ env.PACKAGE_NAME }}-${{ matrix.target }}
path: target/${{ matrix.target }}/release/${{ env.BINARY_NAME }}${{ matrix.binary-ext }}
Expand All @@ -114,7 +114,7 @@ jobs:
runs-on: ubuntu-latest
needs: [ build ]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

# Sets the header for the release description
- run: echo "" > RELEASE_HEAD.md
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
needs: [ create_release ]
steps:
- name: Download Artifact
uses: actions/download-artifact@v5
uses: actions/download-artifact@v7
with:
name: ${{ env.PACKAGE_NAME }}-${{ matrix.target }}
path: ${{ env.PACKAGE_NAME }}-${{ matrix.target }}
Expand Down
Loading