This is an automated email from the ASF dual-hosted git repository.
jiayu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sedona.git
The following commit(s) were added to refs/heads/master by this push:
new eab39e1b23 [GH-1900] Fixing ActionLint suggestions on Github Action
files (#1906)
eab39e1b23 is described below
commit eab39e1b239d3d4f58c77d457eb990c40df0a316
Author: Madhuri Rathod <[email protected]>
AuthorDate: Sat Apr 5 12:32:55 2025 +0530
[GH-1900] Fixing ActionLint suggestions on Github Action files (#1906)
---
.github/workflows/docker-build.yml | 2 +-
.github/workflows/docs.yml | 4 ++--
.github/workflows/example.yml | 4 ++--
.github/workflows/java.yml | 2 +-
.github/workflows/lint.yml | 2 +-
.github/workflows/python.yml | 2 +-
6 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/.github/workflows/docker-build.yml
b/.github/workflows/docker-build.yml
index 66ae8dae83..627519df1a 100644
--- a/.github/workflows/docker-build.yml
+++ b/.github/workflows/docker-build.yml
@@ -64,7 +64,7 @@ jobs:
distribution: 'zulu'
java-version: 11
- name: Cache Maven packages
- uses: actions/cache@v3
+ uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml
index 80bc45a993..6152ccd95d 100644
--- a/.github/workflows/docs.yml
+++ b/.github/workflows/docs.yml
@@ -83,14 +83,14 @@ jobs:
name: generated-docs
path: staging
- name: Cache Python packages
- uses: actions/cache@v3
+ uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Cache Maven packages
- uses: actions/cache@v3
+ uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
diff --git a/.github/workflows/example.yml b/.github/workflows/example.yml
index 90a9a96537..776791c6c0 100644
--- a/.github/workflows/example.yml
+++ b/.github/workflows/example.yml
@@ -64,14 +64,14 @@ jobs:
- run: sudo apt-get update
- run: sudo apt-get install sbt
- name: Cache SBT
- uses: actions/cache@v3
+ uses: actions/cache@v4
with:
path: |
~/.ivy2/cache
~/.sbt
key: ${{ runner.os }}-sbt-${{ hashFiles('**/build.sbt') }}
- name: Cache Maven packages
- uses: actions/cache@v3
+ uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
diff --git a/.github/workflows/java.yml b/.github/workflows/java.yml
index 921102cb36..6a62b3beb4 100644
--- a/.github/workflows/java.yml
+++ b/.github/workflows/java.yml
@@ -99,7 +99,7 @@ jobs:
with:
python-version: '3.10'
- name: Cache Maven packages
- uses: actions/cache@v3
+ uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index cd6b0d82a8..f2b6e1d55a 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -39,7 +39,7 @@ jobs:
pip install pre-commit
- name: set PY
run: echo "PY=$(python -VV | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV
- - uses: actions/cache@v3
+ - uses: actions/cache@v4
with:
path: ~/.cache/pre-commit
key: pre-commit|${{ env.PY }}|${{
hashFiles('.pre-commit-config.yaml') }}
diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml
index 7553c7b821..3aed288efa 100644
--- a/.github/workflows/python.yml
+++ b/.github/workflows/python.yml
@@ -99,7 +99,7 @@ jobs:
with:
python-version: ${{ matrix.python }}
- name: Cache Maven packages
- uses: actions/cache@v3
+ uses: actions/cache@v4
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}