Skip to content

Commit 225a18e

Browse files
Bump actions/cache from 4 to 5
Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 8b30b43 commit 225a18e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
override: true
5858
toolchain: stable
5959
- name: Cache Cargo
60-
uses: actions/cache@v4
60+
uses: actions/cache@v5
6161
with:
6262
path: ~/.cargo
6363
key: cargo-lint-${{ steps.rust-toolchain.outputs.rustc_hash }}-${{ hashFiles('Cargo.lock') }}
@@ -142,7 +142,7 @@ jobs:
142142
override: true
143143
toolchain: stable
144144
- name: Cache Cargo
145-
uses: actions/cache@v4
145+
uses: actions/cache@v5
146146
with:
147147
path: ~/.cargo
148148
key: cargo-test-${{ matrix.runs-on }}-${{ steps.rust-toolchain.outputs.rustc_hash }}-${{ hashFiles('**/Cargo.toml') }}

.github/workflows/doc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
override: true
6262
toolchain: stable
6363
- name: Cache Cargo
64-
uses: actions/cache@v4
64+
uses: actions/cache@v5
6565
with:
6666
path: ~/.cargo
6767
key: cargo-doc-${{ steps.rust-toolchain.outputs.rustc_hash }}-${{ hashFiles('**/Cargo.toml') }}

.github/workflows/package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ jobs:
166166
cd package
167167
rake version:update RELEASE_DATE=$(date +%Y-%m-%d)
168168
- name: Cache ccache
169-
uses: actions/cache@v4
169+
uses: actions/cache@v5
170170
with:
171171
path: package/${{ matrix.task-namespace }}/build/${{ matrix.target }}/ccache
172172
key: package-${{ matrix.id }}-ccache-${{ hashFiles('datafusion-glib/**/*.{c,h}', 'src/**/*.rs') }}

0 commit comments

Comments
 (0)