Skip to content

Commit

Permalink
Try to fix scala-steward.conf
Browse files Browse the repository at this point in the history
  • Loading branch information
FabioPinheiro committed Jun 28, 2023
1 parent 4ccb54c commit 879e71a
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
19 changes: 18 additions & 1 deletion .github/workflows/scala-steward.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,27 @@ jobs:
echo "email: ${{ steps.import_gpg.outputs.email }}"
- name: Launch Scala Steward
uses: scala-steward-org/scala-steward-action@v2
# uses: scala-steward-org/scala-steward-action@v2
uses: FabioPinheiro/scala-steward-action@b2d3539f5a99aa69a62581898e187c36fa33b742
with:
github-token: ${{ secrets.REPO_GITHUB_TOKEN }}
author-email: ${{ steps.import_gpg.outputs.email }}
author-name: ${{ steps.import_gpg.outputs.name }}
sign-commits: true
signing-key: ${{ secrets.GPG_SIGNING_KEY_ID }}
max-buffer-size: 25000


# docker pull fthomas/scala-steward
docker run -v /home/fabio/workspace/scala-steward-workspace:/opt/scala-steward -it fthomas/scala-steward:latest \
-DLOG_LEVEL=TRACE \
--do-not-fork \
--workspace "/opt/scala-steward/workspace" \
--repos-file "/opt/scala-steward/repos.md" \
--repo-config "/opt/scala-steward/default.scala-steward.conf" \
--git-author-email "fabiomgpinheiro@gmail.com" \
--forge-api-host "https://api.github.com" \
--forge-login FabioPinheiro \
--git-ask-pass "/opt/scala-steward/FabioPinheiro.sh" \
--sign-commits \
--max-buffer-size 25000
4 changes: 2 additions & 2 deletions .scala-steward.conf
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
updatePullRequests = "on-conflicts"
buildRoots = ["."]

updates.ignore = [ { groupId = "dev.zio", artifactId = "zio-json", version = "0.4.2" } ]

dependencyOverrides = [
{
dependency = { groupId = "com.nimbusds", artifactId = "nimbus-jose-jwt"}
pullRequests = { frequency = "90 day" },
# dependency = { groupId = "com.nimbusds", artifactId = "nimbus-jose-jwt", version = "9.24." }
# pullRequests = { frequency = "@monthly" },
}
]
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ lazy val V = new {

// https://mvnrepository.com/artifact/dev.zio/zio
val zio = "2.0.15"
val zioJson = "0.4.2"
val zioJson = "0.4.2" // FIXME UPDATE
val zioMunitTest = "0.1.1"
val zioHttp = "0.0.5"
val zioPrelude = "1.0.0-RC19"
Expand Down

0 comments on commit 879e71a

Please sign in to comment.