Skip to content

Commit 3b6385e

Browse files
committed
Fix actions
1 parent 2fd8778 commit 3b6385e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ${{ matrix.os }}
2323
steps:
2424
- name: checkout repository
25-
uses: actions/checkout@v2
25+
uses: actions/checkout@v4
2626
- name: setup jdk ${{ matrix.java }}
2727
uses: actions/setup-java@v1
2828
with:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/cache@v2
14+
- uses: actions/cache@v4
1515
with:
1616
path: |
1717
~/.gradle/loom-cache
@@ -20,7 +20,7 @@ jobs:
2020
key: gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
2121
restore-keys: |
2222
gradle-
23-
- uses: actions/checkout@v2
23+
- uses: actions/checkout@v4
2424
- name: Set up JDK
2525
uses: actions/setup-java@v1
2626
with:

0 commit comments

Comments
 (0)