This is an automated email from the ASF dual-hosted git repository.
agrove pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion-ballista.git
The following commit(s) were added to refs/heads/main by this push:
new 4555b8c5 Bump actions/cache from 3 to 4 (#958)
4555b8c5 is described below
commit 4555b8c53c47792c15297d2c855f1594dd253962
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Fri Sep 13 06:23:01 2024 -0600
Bump actions/cache from 3 to 4 (#958)
---
.github/workflows/rust.yml | 28 ++++++++++++++--------------
1 file changed, 14 insertions(+), 14 deletions(-)
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index 3a344b30..45423561 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -40,14 +40,14 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Cache Cargo
- uses: actions/cache@v3
+ uses: actions/cache@v4
with:
# these represent dependencies downloaded by cargo
# and thus do not depend on the OS, arch nor rust version.
path: /github/home/.cargo
key: cargo-cache-
- name: Cache Rust dependencies
- uses: actions/cache@v3
+ uses: actions/cache@v4
with:
# these represent compiled steps of both dependencies and arrow
# and thus are specific for a particular OS, arch and rust version.
@@ -135,13 +135,13 @@ jobs:
apt-get -qq update && apt-get -y -qq install protobuf-compiler
protoc --version
- name: Cache Cargo
- uses: actions/cache@v3
+ uses: actions/cache@v4
with:
path: /github/home/.cargo
# this key equals the ones on `linux-build-lib` for re-use
key: cargo-cache-
- name: Cache Rust dependencies
- uses: actions/cache@v3
+ uses: actions/cache@v4
with:
path: /github/home/target
# this key equals the ones on `linux-build-lib` for re-use
@@ -192,13 +192,13 @@ jobs:
export PATH=$PATH:$HOME/d/protoc/bin
protoc --version
- name: Cache Cargo
- uses: actions/cache@v3
+ uses: actions/cache@v4
with:
path: /github/home/.cargo
# this key equals the ones on `linux-build-lib` for re-use
key: cargo-cache-
- name: Cache Rust dependencies
- uses: actions/cache@v3
+ uses: actions/cache@v4
with:
path: /github/home/target
# this key equals the ones on `linux-build-lib` for re-use
@@ -299,13 +299,13 @@ jobs:
apt-get -qq update && apt-get -y -qq install protobuf-compiler
protoc --version
- name: Cache Cargo
- uses: actions/cache@v3
+ uses: actions/cache@v4
with:
path: /github/home/.cargo
# this key equals the ones on `linux-build-lib` for re-use
key: cargo-cache-
- name: Cache Rust dependencies
- uses: actions/cache@v3
+ uses: actions/cache@v4
with:
path: /github/home/target
# this key equals the ones on `linux-build-lib` for re-use
@@ -390,13 +390,13 @@ jobs:
with:
submodules: true
- name: Cache Cargo
- uses: actions/cache@v3
+ uses: actions/cache@v4
with:
path: /github/home/.cargo
# this key equals the ones on `linux-build-lib` for re-use
key: cargo-cache-
- name: Cache Rust dependencies
- uses: actions/cache@v3
+ uses: actions/cache@v4
with:
path: /github/home/target
# this key equals the ones on `linux-build-lib` for re-use
@@ -433,13 +433,13 @@ jobs:
with:
submodules: true
- name: Cache Cargo
- uses: actions/cache@v3
+ uses: actions/cache@v4
with:
path: /github/home/.cargo
# this key equals the ones on `linux-build-lib` for re-use
key: cargo-cache-
- name: Cache Rust dependencies
- uses: actions/cache@v3
+ uses: actions/cache@v4
with:
path: /github/home/target
# this key equals the ones on `linux-build-lib` for re-use
@@ -483,13 +483,13 @@ jobs:
# with:
# submodules: true
# - name: Cache Cargo
-# uses: actions/cache@v3
+# uses: actions/cache@v4
# with:
# path: /home/runner/.cargo
# # this key is not equal because the user is different than on a
container (runner vs github)
# key: cargo-coverage-cache-
# - name: Cache Rust dependencies
-# uses: actions/cache@v3
+# uses: actions/cache@v4
# with:
# path: /home/runner/target
# # this key is not equal because coverage uses different compilation
flags.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]