Skip to content

Commit

Permalink
Upgrade tasks in build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ppalaga committed Feb 14, 2023
1 parent 5e30929 commit 910dd09
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ name: Build
on:
push:
branches:
- "main"
- main
- "[0-9]+.[0-9]+"
- "[0-9]+.[0-9]+.x"
paths-ignore:
- '.gitignore'
- 'CODEOWNERS'
Expand All @@ -20,11 +22,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up JDK 11
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 11

- name: Cache local Maven repository
Expand Down Expand Up @@ -58,11 +61,12 @@ jobs:
needs: build-and-run-jvm-tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up JDK 11
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 11

- name: Cache local Maven repository
Expand Down

0 comments on commit 910dd09

Please sign in to comment.