Skip to content

Commit 5f78def

Browse files
authored
fix: Several GitHub actions are outdated (#277)
1 parent f8040a3 commit 5f78def

File tree

4 files changed

+15
-11
lines changed

4 files changed

+15
-11
lines changed

.github/dependabot.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,8 @@ updates:
1010
schedule:
1111
interval: "daily"
1212
ignore:
13-
- dependency-name: "org.apache.maven.plugins:maven-compiler-plugin"
13+
- dependency-name: "org.apache.maven.plugins:maven-compiler-plugin"
14+
- package-ecosystem: "github-actions"
15+
directory: "/"
16+
schedule:
17+
interval: "weekly"

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ jobs:
3434
run: git config --global core.autocrlf false
3535
if: startsWith(matrix.os, 'windows')
3636

37-
- uses: actions/checkout@v2
37+
- uses: actions/checkout@v3
3838
- name: Set up JDK 11
39-
uses: actions/setup-java@v2
39+
uses: actions/setup-java@v3
4040
with:
4141
distribution: temurin
4242
java-version: 11
@@ -56,9 +56,9 @@ jobs:
5656
run: git config --global core.autocrlf false
5757
if: startsWith(matrix.os, 'windows')
5858

59-
- uses: actions/checkout@v2
59+
- uses: actions/checkout@v3
6060
- name: Set up JDK 11
61-
uses: actions/setup-java@v2
61+
uses: actions/setup-java@v3
6262
with:
6363
distribution: temurin
6464
java-version: 11

.github/workflows/quarkus-snapshot.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,18 @@ jobs:
3030
run: sudo add-apt-repository ppa:rmescandon/yq && sudo apt update && sudo apt install yq -y
3131

3232
- name: Set up Java
33-
uses: actions/setup-java@v2
33+
uses: actions/setup-java@v3
3434
with:
3535
distribution: temurin
3636
java-version: ${{ env.JAVA_VERSION }}
3737

3838
- name: Checkout repo
39-
uses: actions/checkout@v2
39+
uses: actions/checkout@v3
4040
with:
4141
path: current-repo
4242

4343
- name: Checkout Ecosystem
44-
uses: actions/checkout@v2
44+
uses: actions/checkout@v3
4545
with:
4646
repository: ${{ env.ECOSYSTEM_CI_REPO }}
4747
path: ecosystem-ci

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
github-token: ${{secrets.GITHUB_TOKEN}}
2121
metadata-file-path: '.github/project.yml'
2222

23-
- uses: actions/checkout@v2
23+
- uses: actions/checkout@v3
2424

2525
- name: Import GPG key
2626
id: import_gpg
@@ -30,13 +30,13 @@ jobs:
3030
passphrase: ${{ secrets.GPG_PASSPHRASE }}
3131

3232
- name: Set up JDK 11
33-
uses: actions/setup-java@v2
33+
uses: actions/setup-java@v3
3434
with:
3535
distribution: temurin
3636
java-version: 11
3737

3838
- name: Cache local Maven repository
39-
uses: actions/cache@v2
39+
uses: actions/cache@v3
4040
with:
4141
path: ~/.m2/repository
4242
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

0 commit comments

Comments
 (0)