Skip to content

Commit

Permalink
Update GHA (#195)
Browse files Browse the repository at this point in the history
  • Loading branch information
Michel Davit authored Jan 30, 2025
1 parent 5562cd6 commit d207ab2
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,15 @@ on:

jobs:
test:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Cache sbt
uses: actions/checkout@v4
- name: Cache SBT
uses: coursier/cache-action@v6
- name: Java 11 setup
uses: olafurpg/setup-scala@v10
uses: actions/setup-java@v4
with:
java-version: 1.11.0
distribution: corretto
java-version: 11
- run: sbt test assembly
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ on:

jobs:
publish-assets:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Cache SBT
uses: coursier/cache-action@v6
- name: Java 11 setup
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: temurin
distribution: corretto
java-version: 11
- run: sbt assembly
- name: Upload Jars
Expand Down

0 comments on commit d207ab2

Please sign in to comment.