File tree Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -12,14 +12,14 @@ jobs:
12
12
runs-on : ubuntu-latest
13
13
14
14
steps :
15
- - uses : actions/checkout@v3
15
+ - uses : actions/checkout@v4
16
16
- name : Set up JDK 8
17
- uses : actions/setup-java@v3
17
+ uses : actions/setup-java@v4
18
18
with :
19
19
java-version : ' 8'
20
20
distribution : ' adopt'
21
21
- name : Cache local Maven repository
22
- uses : actions/cache@v3
22
+ uses : actions/cache@v4
23
23
with :
24
24
path : ~/.m2/repository
25
25
key : ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
Original file line number Diff line number Diff line change 11
11
markdown :
12
12
runs-on : ubuntu-latest
13
13
steps :
14
- - uses : actions/checkout@v3
14
+ - uses : actions/checkout@v4
15
15
- name : ⬇️ lint markdown files # Lints all markdown (.md) files
16
16
uses : avto-dev/markdown-lint@v1
17
17
with :
20
20
renovate :
21
21
runs-on : ubuntu-latest
22
22
steps :
23
- - uses : actions/checkout@v3
23
+ - uses : actions/checkout@v4
24
24
- name : 🧼 lint renovate config # Validates changes to renovate.json config file
25
- uses : suzuki-shunsuke/github-action-renovate-config-validator@v0 .1.3
25
+ uses : suzuki-shunsuke/github-action-renovate-config-validator@v1 .1.1
26
26
with :
27
27
config_file_path : ' renovate.json'
Original file line number Diff line number Diff line change @@ -13,18 +13,18 @@ jobs:
13
13
runs-on : ubuntu-latest
14
14
15
15
steps :
16
- - uses : actions/checkout@v2
16
+ - uses : actions/checkout@v4
17
17
18
18
- name : Set up JDK 8
19
- uses : actions/setup-java@v1
19
+ uses : actions/setup-java@v4
20
20
with :
21
21
java-version : 8
22
22
23
23
- name : Build with Maven
24
24
run : mvn -B -ntp package --file pom.xml
25
25
26
26
- name : Set up Apache Maven Central
27
- uses : actions/setup-java@v1
27
+ uses : actions/setup-java@v4
28
28
with : # running setup-java again overwrites the settings.xml
29
29
java-version : 8
30
30
server-id : ossrh
Original file line number Diff line number Diff line change 12
12
pull-requests : write
13
13
steps :
14
14
- name : 📆 mark stale PRs # Automatically marks inactive PRs as stale
15
- uses : actions/stale@v6
15
+ uses : actions/stale@v9
16
16
with :
17
17
repo-token : ${{ secrets.GITHUB_TOKEN }}
18
18
days-before-stale : 60
You can’t perform that action at this time.
0 commit comments