Skip to content

chore(deps): bump sbt from 1.9.0 to 1.9.1 #345

chore(deps): bump sbt from 1.9.0 to 1.9.1

chore(deps): bump sbt from 1.9.0 to 1.9.1 #345

Workflow file for this run

name: ci
on:
push:
pull_request:
workflow_dispatch:
jobs:
linter:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout / Setup JDK 11 / SBT-Cache
uses: rodobarcaaa/action-jdk-sbt-cache@v1.0.0
with:
token: ${{ secrets.GH_PAT }}
- name: Scalafmt Check All
run: sbt +scalafmtCheckAll
sonar:
runs-on: ubuntu-latest
needs: [linter]
timeout-minutes: 25
steps:
- name: Checkout / Setup JDK 11 / SBT-Cache
uses: rodobarcaaa/action-jdk-sbt-cache@v1.0.0
with:
token: ${{ secrets.GH_PAT }}
- run: sbt -Dsonar.login=${{ secrets.SONAR_TOKEN }} sonar
labeler:
runs-on: ubuntu-latest
if: github.ref != 'refs/heads/main'
timeout-minutes: 1
steps:
- name: Label the PR action
continue-on-error: true
uses: TimonVS/pr-labeler-action@v3
with:
configuration-path: .github/labeler.yml
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
release_draft:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
timeout-minutes: 5
steps:
- uses: release-drafter/release-drafter@v5
with:
config-name: release-drafter.yml
env:
GITHUB_TOKEN: ${{ secrets.GH_PAT }}