Skip to content

Commit

Permalink
Update sbt-github-actions to 0.13.0 (#253)
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward authored Aug 15, 2021
1 parent 229b26e commit dede50d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
fetch-depth: 0

- name: Setup Java and Scala
uses: olafurpg/setup-scala@v12
uses: olafurpg/setup-scala@v13
with:
java-version: ${{ matrix.java }}

Expand All @@ -53,7 +53,7 @@ jobs:
key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}

- name: Check that workflows are up to date
run: sbt --client '++${{ matrix.scala }}; githubWorkflowCheck'
run: sbt ++${{ matrix.scala }} githubWorkflowCheck

- run: |
sbt ++${{ matrix.scala }} fmtCheck \
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
fetch-depth: 0

- name: Setup Java and Scala
uses: olafurpg/setup-scala@v12
uses: olafurpg/setup-scala@v13
with:
java-version: ${{ matrix.java }}

Expand Down Expand Up @@ -145,9 +145,9 @@ jobs:
- name: Import signing key
run: echo $PGP_SECRET | base64 -d | gpg --import

- run: sbt --client '++${{ matrix.scala }}; release'
- run: sbt ++${{ matrix.scala }} release

- run: sbt --client '++${{ matrix.scala }}; docs/makeSite'
- run: sbt ++${{ matrix.scala }} docs/makeSite

- uses: JamesIves/github-pages-deploy-action@3.7.1
with:
Expand All @@ -168,7 +168,7 @@ jobs:
uses: actions/checkout@v2

- name: Setup Java and Scala
uses: olafurpg/setup-scala@v12
uses: olafurpg/setup-scala@v13
with:
java-version: ${{ matrix.java }}

Expand All @@ -184,7 +184,7 @@ jobs:
~/Library/Caches/Coursier/v1
key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}

- run: sbt --client '++${{ matrix.scala }}; docs/mdoc'
- run: sbt ++${{ matrix.scala }} docs/mdoc

coverage:
name: Generate coverage report
Expand All @@ -199,7 +199,7 @@ jobs:
uses: actions/checkout@v2

- name: Setup Java and Scala
uses: olafurpg/setup-scala@v12
uses: olafurpg/setup-scala@v13
with:
java-version: ${{ matrix.java }}

Expand All @@ -215,6 +215,6 @@ jobs:
~/Library/Caches/Coursier/v1
key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}

- run: sbt --client '++${{ matrix.scala }}; coverage; test; coverageAggregate'
- run: sbt ++${{ matrix.scala }} coverage test coverageAggregate

- run: 'bash <(curl -s https://codecov.io/bash)'
- run: 'bash <(curl -s https://codecov.io/bash)'
2 changes: 1 addition & 1 deletion .github/workflows/clean.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,4 @@ jobs:
printf "Deleting '%s' #%d, %'d bytes\n" $name ${ARTCOUNT[$name]} $size
ghapi -X DELETE $REPO/actions/artifacts/$id
done
done
done
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.7.0")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.8.2")
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.3")
addSbtPlugin("com.codecommit" % "sbt-spiewak-sonatype" % "0.21.0")
addSbtPlugin("com.codecommit" % "sbt-github-actions" % "0.12.0")
addSbtPlugin("com.codecommit" % "sbt-github-actions" % "0.13.0")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.3")
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.2.22")
addSbtPlugin("io.github.jonas" % "sbt-paradox-material-theme" % "0.6.0")
Expand Down

0 comments on commit dede50d

Please sign in to comment.