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

Update sbt-ci to 1.4.0 #54

Merged
merged 2 commits into from
Feb 10, 2021
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
2 changes: 1 addition & 1 deletion .github/workflows/auto-rebase.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ jobs:
name: Auto rebase PRs
runs-on: ubuntu-latest
steps:
- uses: Label305/AutoRebase@v0.1.5
- uses: Label305/AutoRebase@v0.1.10
with:
github_token: ${{ secrets.ADMIN_GITHUB_TOKEN }}
12 changes: 10 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,18 @@ jobs:
apps: sbt
- name: Enable Coursier cache
uses: coursier/cache-action@v5
- name: Check if `.github/auto_assign.yml` exists
id: check_files
uses: andstor/file-existence-action@v1
with:
files: ".github/auto_assign.yml"
- name: Add Pull Request Reviewer
if: steps.check_files.outputs.files_exists == 'true'
uses: kentaro-m/auto-assign-action@v1.1.2
- run: sbt generateCiFiles fix || sbt "generateCiFiles; scalafmtAll; scalafmtSbt" || true
- name: Push changes
id: push
uses: stefanzweifel/git-auto-commit-action@v4.7.2
uses: stefanzweifel/git-auto-commit-action@v4.8.0
with:
commit_message: Regenerate files with `sbt generateCiFiles fix`
post-scala-steward:
Expand All @@ -62,7 +70,7 @@ jobs:
if: github.event_name == 'pull_request' && github.event.pull_request.user.login == 'alejandrohdezma' && contains(github.event.pull_request.body, 'Scala Steward')
steps:
- name: Automerge Scala Steward PRs
uses: ridedott/merge-me-action@v1.8.73
uses: ridedott/merge-me-action@v1.8.138
with:
GITHUB_LOGIN: alejandrohdezma
GITHUB_TOKEN: ${{ secrets.ADMIN_GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GIT_DEPLOY_KEY: ${{ secrets.GIT_DEPLOY_KEY }}
- name: Push changes
uses: stefanzweifel/git-auto-commit-action@v4.7.2
uses: stefanzweifel/git-auto-commit-action@v4.8.0
with:
commit_message: "Update documentation [skip ci]"
2 changes: 1 addition & 1 deletion .github/workflows/scala-steward.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
ref: master
- name: Import GPG key
id: import_gpg
uses: crazy-max/ghaction-import-gpg@v3.0.2
uses: crazy-max/ghaction-import-gpg@v3.1.0
with:
gpg-private-key: ${{ secrets.PGP_SECRET }}
passphrase: ${{ secrets.PGP_PASSPHRASE }}
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.9.25")
addSbtPlugin("com.alejandrohdezma" % "sbt-fix" % "0.7.0")
addSbtPlugin("com.alejandrohdezma" % "sbt-ci" % "1.3.1")
addSbtPlugin("com.alejandrohdezma" % "sbt-ci" % "1.4.0")
addSbtPlugin("com.alejandrohdezma" % "sbt-github-mdoc" % "0.9.0")
addSbtPlugin("com.alejandrohdezma" % "sbt-github-header" % "0.9.0")
addSbtPlugin("com.alejandrohdezma" % "sbt-scalafix-defaults" % "0.4.0")
Expand Down