Skip to content

Commit

Permalink
Update CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rosvit committed Oct 19, 2024
1 parent ba21807 commit 45f7078
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 8
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: '8'
java-version: '11'
distribution: 'temurin'
cache: 'sbt'
- name: Run tests
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 8
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: '8'
java-version: '11'
distribution: 'temurin'
cache: 'sbt'
- name: Assemble JAR
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Simple CLI application that reads a FIT file of a lap swim activity and produces

## Usage

`swim-report` is a CLI application, Java 8 or newer is required to run it.
`swim-report` is a CLI application, Java 11 or newer is required to run it.

To download the latest available build, go to the releases in this repository or use
[this link](https://github.com/rosvit/swim-report/releases/latest/download/swim-report.jar).
Expand All @@ -46,6 +46,6 @@ of the native platform of your sports watch:

## Building from source

JDK 8 or later and [sbt](https://www.scala-sbt.org/) are required to build the application from source.
JDK 11 or later and [sbt](https://www.scala-sbt.org/) are required to build the application from source.

Use `sbt compile` to compile the sources, `sbt test` to run the tests and `sbt assembly` to build the JAR with all dependencies.

0 comments on commit 45f7078

Please sign in to comment.