File tree Expand file tree Collapse file tree 6 files changed +36
-21
lines changed Expand file tree Collapse file tree 6 files changed +36
-21
lines changed Original file line number Diff line number Diff line change
1
+ on :
2
+ push :
3
+ branches-ignore :
4
+ - " update/**"
5
+ schedule :
6
+ - cron : " 0 0 * * 0"
7
+ workflow_dispatch :
8
+
9
+ name : Update Scala project template
10
+
11
+ jobs :
12
+ update-scala-project-template :
13
+ permissions :
14
+ # for aws-actions/configure-aws-credentials to assume an AWS role
15
+ id-token : write
16
+ # for peter-evans/create-pull-request to create branch
17
+ contents : write
18
+ # for peter-evans/create-pull-request to create a PR
19
+ pull-requests : write
20
+ runs-on : ubuntu-22.04
21
+ steps :
22
+ - uses : actions/checkout@v3
23
+ - run : git fetch https://github.com/Atry/scala-project-template.git template
24
+ - run : git reset --hard FETCH_HEAD
25
+ - uses : peter-evans/create-pull-request@v5
26
+ with :
27
+ delete-branch : true
28
+ base : ${{github.ref_name}}
29
+ branch : update/${{github.ref_name}}/scala-project-template
30
+ title : Update scala-project-template
31
+ token : ${{ secrets.PERSONAL_ACCESS_TOKEN || github.token }}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
runner.dialect = scala3
2
- version = "3.7.4 "
2
+ version = "3.7.5 "
3
3
maxColumn = 80
Original file line number Diff line number Diff line change 1
- sbt.version =1.8.2
1
+ sbt.version =1.9.1
Original file line number Diff line number Diff line change 1
- addSbtPlugin(
2
- " com.thoughtworks.sbt-best-practice" % " sbt-best-practice" % " 8.3.0"
3
- )
4
-
5
- addSbtPlugin(" org.xerial.sbt" % " sbt-sonatype" % " 3.9.21" )
6
-
7
- addSbtPlugin(" com.dwijnand" % " sbt-dynver" % " 4.1.1" )
8
-
9
- addSbtPlugin(" com.github.sbt" % " sbt-pgp" % " 2.2.1" )
10
-
11
- addSbtPlugin(" org.lyranthe.sbt" % " partial-unification" % " 1.1.2" )
12
-
13
- addSbtPlugin(" com.thoughtworks.example" % " sbt-example" % " 9.3.0" )
14
-
15
1
addSbtPlugin(" ch.epfl.scala" % " sbt-scalajs-bundler" % " 0.21.1" )
16
2
17
3
libraryDependencies += " net.sourceforge.htmlunit" % " htmlunit" % " 2.70.0"
Original file line number Diff line number Diff line change
1
+ addSbtPlugin(
2
+ " com.thoughtworks.sbt-best-practice" % " sbt-best-practice" % " 8.3.0"
3
+ )
You can’t perform that action at this time.
0 commit comments