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
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
components: rustfmt

- name: Cache cargo
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.cargo/registry
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
uses: dtolnay/rust-toolchain@stable

- name: Cache cargo
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.cargo/registry
Expand All @@ -130,7 +130,7 @@ jobs:
uses: dtolnay/rust-toolchain@stable

- name: Cache cargo
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.cargo/registry
Expand Down Expand Up @@ -159,7 +159,7 @@ jobs:
uses: taiki-e/install-action@cargo-llvm-cov

- name: Cache cargo
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.cargo/registry
Expand Down Expand Up @@ -202,7 +202,7 @@ jobs:
run: sudo apt-get update && sudo apt-get install -y jq

- name: Cache cargo
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/.cargo/registry
Expand All @@ -213,7 +213,7 @@ jobs:
${{ runner.os }}-cargo-bench-

- name: Restore benchmark baseline
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: crates/ndarrow/target/criterion
key: ${{ runner.os }}-bench-baseline-${{ github.ref_name }}
Expand Down Expand Up @@ -245,7 +245,7 @@ jobs:

- name: Save benchmark baseline
if: github.ref == 'refs/heads/main'
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: crates/ndarrow/target/criterion
key: ${{ runner.os }}-bench-baseline-${{ github.ref_name }}-${{ github.sha }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ jobs:
if: github.actor != 'dependabot[bot]'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/labeler@v5
- uses: actions/checkout@v6
- uses: actions/labeler@v6
with:
configuration-path: .github/labeler.yml

Expand All @@ -31,7 +31,7 @@ jobs:
if: github.actor != 'dependabot[bot]'
runs-on: ubuntu-latest
steps:
- uses: amannn/action-semantic-pull-request@v5
- uses: amannn/action-semantic-pull-request@v6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
name: cargo-audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
Expand Down