Skip to content

Commit 8d16f22

Browse files
committed
v3: Upgrade various actions
1 parent 523dc78 commit 8d16f22

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/antora.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
id: npm-cache-dir
4949
run: |
5050
echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT
51-
- uses: actions/cache@v3
51+
- uses: actions/cache@v4
5252
id: npm-cache # use this to check for `cache-hit` ==> if: steps.npm-cache.outputs.cache-hit != 'true'
5353
with:
5454
path: ${{ steps.npm-cache-dir.outputs.dir }}
@@ -71,7 +71,7 @@ jobs:
7171

7272
- name: Publish to GitHub Pages
7373
if: ${{ inputs.publish && github.event.repository.fork == false }}
74-
uses: peaceiris/actions-gh-pages@v3
74+
uses: peaceiris/actions-gh-pages@v4
7575
with:
7676
github_token: ${{ secrets.GITHUB_TOKEN }}
7777
publish_dir: ${{ inputs.path }}/build/site

.github/workflows/cmd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ jobs:
128128
extraKey: ${{ inputs.extra-coursier-cache-key }}
129129

130130
- name: Gradle Cache
131-
uses: burrunan/gradle-cache-action@v1
131+
uses: burrunan/gradle-cache-action@v2
132132
with:
133133
build-root-directory: ${{ inputs.gradle-build-root }}
134134
# Disable caching of ~/.gradle/caches/build-cache-*
@@ -137,7 +137,7 @@ jobs:
137137
save-maven-dependencies-cache: false
138138

139139
- name: Custom Cache
140-
uses: actions/cache@v3
140+
uses: actions/cache@v4
141141
if: ${{ inputs.cache-key != '' && inputs.cache-path != '' }}
142142
with:
143143
key: ${{ format(inputs.cache-key, matrix.java) }}

.github/workflows/gradle-wrapper-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ jobs:
2525
ref: ${{ inputs.ref }}
2626

2727
- name: Gradle Wrapper Validation
28-
uses: gradle/wrapper-validation-action@v1
28+
uses: gradle/actions/wrapper-validation@v4

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
extraKey: ${{ inputs.extra-coursier-cache-key }}
5959

6060
- name: Gradle Cache
61-
uses: burrunan/gradle-cache-action@v1
61+
uses: burrunan/gradle-cache-action@v2
6262
with:
6363
build-root-directory: ${{ inputs.gradle-build-root }}
6464
# Disable caching of ~/.gradle/caches/build-cache-*

0 commit comments

Comments
 (0)