Skip to content

Commit

Permalink
Upgrade github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
juliaaano committed Aug 30, 2023
1 parent ad51adb commit a467a69
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci-native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
MVN: mvn --show-version --batch-mode
steps:
- name: jdk11
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
java-version: "11"
distribution: "adopt"
Expand All @@ -46,9 +46,9 @@ jobs:
password: ${{ secrets.REDHAT_PWD }}
logout: true
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: cache ~/.m2
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
Expand All @@ -72,7 +72,7 @@ jobs:
MVN: mvn --show-version --batch-mode
steps:
- name: JDK 11
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
java-version: "11"
distribution: "adopt"
Expand All @@ -91,9 +91,9 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}
logout: true
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: cache ~/.m2
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
MVN: mvn --show-version --batch-mode
steps:
- name: jdk11
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
java-version: "11"
distribution: "adopt"
Expand All @@ -54,9 +54,9 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}
logout: true
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: cache ~/.m2
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/scanning.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: jdk11
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
java-version: "11"
distribution: "adopt"
Expand All @@ -28,9 +28,9 @@ jobs:
with:
languages: java
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: cache ~/.m2
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
Expand Down

0 comments on commit a467a69

Please sign in to comment.