Skip to content

Commit

Permalink
Update CI Action dependencies (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ostrzyciel authored Apr 24, 2024
1 parent a25735b commit 79705fe
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dependency-graph.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ jobs:
name: Update dependency graph
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: scalacenter/sbt-dependency-submission@v2
- uses: actions/checkout@v4
- uses: scalacenter/sbt-dependency-submission@v2
10 changes: 8 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Release
on:
push:
branches: [main]
tags: ["*"]
tags: ["v*"]
jobs:
publish:
runs-on: ubuntu-latest
Expand All @@ -11,7 +11,13 @@ jobs:
with:
fetch-depth: 0
submodules: recursive
- uses: olafurpg/setup-scala@v13

- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
cache: 'sbt'

- run: sbt ci-release
env:
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/scala.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,16 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

- name: Setup JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: ${{ matrix.java }}

- name: Build and test
shell: bash
run: sbt -v +test

0 comments on commit 79705fe

Please sign in to comment.