We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa2465c commit e1172deCopy full SHA for e1172de
.github/workflows/java.yml
@@ -9,18 +9,18 @@ jobs:
9
10
steps:
11
- name: Checkout code
12
- uses: actions/checkout@v2
+ uses: actions/checkout@v4
13
14
- name: Import GPG key
15
- uses: crazy-max/ghaction-import-gpg@v1
16
- env:
17
- GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
18
- PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
19
-
+ uses: crazy-max/ghaction-import-gpg@v6
+ with:
+ gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
+ passphrase: ${{ secrets.GPG_PASSPHRASE }}
+
20
- name: Cache Maven packages
21
- uses: actions/cache@v2
+ uses: actions/cache@v4
22
with:
23
- path: ~/.m2
+ path: ~/.m2/repository
24
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
25
restore-keys: ${{ runner.os }}-m2
26
0 commit comments