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/build-and-test-device.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:

- name: Cache Arrow C++ Build
id: cache-arrow-build
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: arrow
# Bump the number at the end of this line to force a new Arrow C++ build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test-ipc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:

- name: Cache Arrow C++ Build
id: cache-arrow-build
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: arrow
# Bump the number at the end of this line to force a new Arrow C++ build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:

- name: Cache Arrow C++ Build
id: cache-arrow-build
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: arrow
# Bump the number at the end of this line to force a new Arrow C++ build
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:

- name: Cache Arrow C++ Build
id: cache-arrow-build
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: arrow
# Bump the number at the end of this line to force a new Arrow C++ build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clang-tidy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:

- name: Cache Arrow C++ Build
id: cache-arrow-build
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: arrow
# Bump the number at the end of this line to force a new Arrow C++ build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
with:
python-version: '3.13'
- name: pre-commit (cache)
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.cache/pre-commit
key: pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:

- name: Cache Arrow C++ Build
id: cache-arrow-build
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: arrow
# Bump the number at the end of this line to force a new Arrow C++ build
Expand Down
Loading