Skip to content

Commit b5026b7

Browse files
committed
[CI] Update actions/cache to v3 and actions/upload-artifact to v4
1 parent d3fba66 commit b5026b7

7 files changed

+7
-7
lines changed

.github/workflows/build-snapshot-worker.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
JF_ENV_SPRING: ${{ secrets.JF_ARTIFACTORY_SPRING }}
2424

2525
# cache maven .m2
26-
- uses: actions/cache@v2
26+
- uses: actions/cache@v3
2727
with:
2828
path: ~/.m2/repository
2929
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

.github/workflows/ci-e2e.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
config-file: cypress-dc-local.json
2222
browser: chrome
2323
headless: true
24-
- uses: actions/upload-artifact@v2
24+
- uses: actions/upload-artifact@v4
2525
if: failure()
2626
with:
2727
name: cypress-artifacts

.github/workflows/ci-pr.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
steps:
1010
- uses: actions/checkout@v2
1111
# cache maven repo
12-
- uses: actions/cache@v2
12+
- uses: actions/cache@v3
1313
with:
1414
path: ~/.m2/repository
1515
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v2
1515
# cache maven repo
16-
- uses: actions/cache@v2
16+
- uses: actions/cache@v3
1717
with:
1818
path: ~/.m2/repository
1919
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

.github/workflows/milestone-worker.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
env:
2121
JF_URL: 'https://repo.spring.io'
2222
JF_ENV_SPRING: ${{ secrets.JF_ARTIFACTORY_SPRING }}
23-
- uses: actions/cache@v2
23+
- uses: actions/cache@v3
2424
with:
2525
path: ~/.m2/repository
2626
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

.github/workflows/next-dev-version-worker.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
JF_ENV_SPRING: ${{ secrets.JF_ARTIFACTORY_SPRING }}
2323

2424
# cache maven .m2
25-
- uses: actions/cache@v2
25+
- uses: actions/cache@v3
2626
with:
2727
path: ~/.m2/repository
2828
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

.github/workflows/release-worker.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
env:
2121
JF_URL: 'https://repo.spring.io'
2222
JF_ENV_SPRING: ${{ secrets.JF_ARTIFACTORY_SPRING }}
23-
- uses: actions/cache@v2
23+
- uses: actions/cache@v3
2424
with:
2525
path: ~/.m2/repository
2626
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}

0 commit comments

Comments
 (0)