This is an automated email from the ASF dual-hosted git repository.
kezhenxu94 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/skywalking-java.git
The following commit(s) were added to refs/heads/main by this push:
new f63a99277e Bump up actions/cache to v4 (#735)
f63a99277e is described below
commit f63a99277e518e52d3e1831c636c921d8b6aac25
Author: 吴晟 Wu Sheng <[email protected]>
AuthorDate: Tue Dec 10 09:53:40 2024 +0800
Bump up actions/cache to v4 (#735)
---
.github/actions/build/action.yml | 2 +-
.github/actions/run/action.yml | 2 +-
.github/workflows/ci.yaml | 2 +-
.github/workflows/publish-docker.yaml | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/.github/actions/build/action.yml b/.github/actions/build/action.yml
index f233bda2e4..a41636ac28 100644
--- a/.github/actions/build/action.yml
+++ b/.github/actions/build/action.yml
@@ -39,7 +39,7 @@ runs:
sed -i "/<\/sourceDirectories>/i <sourceDirectory>scenarios\/""${{
inputs.test_case }}""<\/sourceDirectory>" test/plugin/pom.xml
echo "::endgroup::"
- name: Cache local Maven repository
- uses: actions/cache@v2
+ uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-agent-test-${{ hashFiles('**/pom.xml') }}
diff --git a/.github/actions/run/action.yml b/.github/actions/run/action.yml
index c0d5ba1172..75a7ee9c26 100644
--- a/.github/actions/run/action.yml
+++ b/.github/actions/run/action.yml
@@ -42,7 +42,7 @@ runs:
docker load -i test-containers/skywalking-agent-test-tomcat-1.0.0.tgz
fi
- name: Cache local Maven repository
- uses: actions/cache@v2
+ uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-agent-test-run-${{ hashFiles('**/pom.xml')
}}
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index f286166990..20e2bae6d2 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -57,7 +57,7 @@ jobs:
with:
submodules: true
- name: Cache local Maven repository
- uses: actions/cache@v2
+ uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-ci-${{ hashFiles('**/pom.xml') }}
diff --git a/.github/workflows/publish-docker.yaml
b/.github/workflows/publish-docker.yaml
index 704c05ad86..71597889a3 100644
--- a/.github/workflows/publish-docker.yaml
+++ b/.github/workflows/publish-docker.yaml
@@ -36,7 +36,7 @@ jobs:
with:
submodules: true
- name: Cache local Maven repository
- uses: actions/cache@v2
+ uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-publish-docker-${{
hashFiles('**/pom.xml') }}