Skip to content

Commit

Permalink
Merge pull request #50 from ajhelsby/feature/#4
Browse files Browse the repository at this point in the history
feature(#4): fix github pipeline
  • Loading branch information
ajhelsby authored Aug 16, 2024
2 parents bc33a34 + c68e350 commit be1b77c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,10 @@ jobs:
- uses: actions/checkout@v3

# Set up JDK 22
- name: actions/checkout@v3
uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
distribution: 'corretto'
java-version: '22'
distribution: 'adopt'

# Set up Maven cache
- name: Cache maven dependencies
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ jobs:
- uses: actions/checkout@v3

# Set up JDK 22
- name: actions/checkout@v3
uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
distribution: 'corretto'
java-version: '22'
distribution: 'adopt'


# Set up Maven cache
- name: Cache maven dependencies
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,13 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Java
uses: actions/setup-java@v3

# Set up JDK 22
- uses: actions/setup-java@v4
with:
distribution: 'corretto'
java-version: '22'

- uses: googleapis/release-please-action@v4
id: release
with:
Expand Down

0 comments on commit be1b77c

Please sign in to comment.