Skip to content

Commit

Permalink
Update GitHub actions to Java 17 (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
wjglerum authored Oct 26, 2023
1 parent ad3a61a commit 0b44a3e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
push:
branches:
- main
tags: ["*"]
tags: [ "*" ]
jobs:
publish:
runs-on: ubuntu-latest
Expand All @@ -14,7 +14,7 @@ jobs:
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'
java-version: '17'
cache: 'sbt'
- run: sbt ci-release
env:
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/scala.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'adopt'
- name: Run tests
run: sbt test
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
cache: 'sbt'
- name: Run tests
run: sbt test

0 comments on commit 0b44a3e

Please sign in to comment.