diff --git a/.github/workflows/auto-rebase.yml b/.github/workflows/auto-rebase.yml index e04acd0..83da792 100644 --- a/.github/workflows/auto-rebase.yml +++ b/.github/workflows/auto-rebase.yml @@ -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 }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cf2a254..60262db 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: @@ -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 }} diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index d311a2b..7e99624 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -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]" diff --git a/.github/workflows/scala-steward.yml b/.github/workflows/scala-steward.yml index 2ce585f..f3aa9c5 100644 --- a/.github/workflows/scala-steward.yml +++ b/.github/workflows/scala-steward.yml @@ -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 }} diff --git a/project/plugins.sbt b/project/plugins.sbt index 001849f..5410e8a 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -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")