Skip to content

Commit

Permalink
Merge pull request #658 from scala-steward/update/sbt-github-actions-…
Browse files Browse the repository at this point in the history
…0.13.0

Update sbt-github-actions to 0.13.0
  • Loading branch information
bplommer authored Aug 19, 2021
2 parents d15b2a2 + fb1c01d commit de26d89
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,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 @@ -50,12 +50,12 @@ 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 --client '++${{ matrix.scala }}; ci'
- run: sbt ++${{ matrix.scala }} ci

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

publish:
name: Publish Artifacts
Expand All @@ -74,7 +74,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 @@ -96,4 +96,4 @@ jobs:
GIT_DEPLOY_KEY: ${{ secrets.GIT_DEPLOY_KEY }}
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
PGP_SECRET: ${{ secrets.PGP_SECRET }}
run: sbt --client '++${{ matrix.scala }}; ci-release; docs/docusaurusPublishGhpages'
run: sbt ++${{ matrix.scala }} ci-release docs/docusaurusPublishGhpages
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 @@ -5,4 +5,4 @@ addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.9.2")
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.6.0")
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.2.22")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.3")
addSbtPlugin("com.codecommit" % "sbt-github-actions" % "0.12.0")
addSbtPlugin("com.codecommit" % "sbt-github-actions" % "0.13.0")

0 comments on commit de26d89

Please sign in to comment.