Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use sbt action in CI #1058

Merged
merged 1 commit into from
Jan 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions .github/workflows/build-middleware/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,8 @@ runs:
cache: sbt
if: contains(inputs.os-name, 'macos-14')

- name: Install SBT - macos-13 & macos-14
shell: bash
run: brew install sbt
if: |
contains(inputs.os-name, 'macos-13') ||
contains(inputs.os-name, 'macos-14')
- name: Setup sbt
uses: sbt/setup-sbt@v1

- name: Make _install directory to store lib files 🔧
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ on:
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
permissions:
actions: read
contents: read
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/ratCheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ jobs:
distribution: temurin
java-version: 8

- name: Setup sbt
uses: sbt/setup-sbt@v1

- name: Check out Repository 🛎️
uses: actions/checkout@v4

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,9 @@ jobs:
java-version: 8
cache: sbt

- name: Setup sbt
uses: sbt/setup-sbt@v1

- name: Make _install directory to store lib files
run: mkdir -p _install

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scala-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:
jobs:
build:
name: Scala Code Format
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: Checkout Current Branch (full) 🛎️
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scala-steward.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on:

jobs:
scala-steward:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
name: Scala Steward 🔔
steps:
- name: Scala Steward 🔔
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ts-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:
jobs:
build:
name: TypeScript code is properly formatted
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: Checkout current branch (full) 🛎️
uses: actions/checkout@v4
Expand Down
Loading