Skip to content

Commit

Permalink
chore(deps): update actions/setup-java action to v3 (googleapis#955)
Browse files Browse the repository at this point in the history
* chore(deps): update actions/setup-java action to v3

* Update ci-maven.yaml

* Update ci.yaml

* Update sonar.yaml

Co-authored-by: Mike Eltsufin <meltsufin@google.com>
  • Loading branch information
renovate-bot and meltsufin authored Feb 28, 2022
1 parent f4c59a8 commit 79ac05f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci-maven.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@ jobs:
java: [8, 11]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
- uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: temurin
- run: java -version

- name: Cache local Maven repository
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@ jobs:
java: [8, 11]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
- uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: temurin
- run: java -version

- name: Bazel File Cache Setup
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/sonar.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@ jobs:
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK 11
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
java-version: 11
distribution: temurin
- name: Cache SonarCloud packages
uses: actions/cache@v2
with:
Expand Down

0 comments on commit 79ac05f

Please sign in to comment.