Skip to content

Commit 8ad7b15

Browse files
authored
Merge pull request #19 from rtyley/updates
Updates
2 parents d0646c2 + 0e1282f commit 8ad7b15

File tree

6 files changed

+6
-10
lines changed

6 files changed

+6
-10
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
test:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717
- uses: guardian/setup-scala@v1
1818
- name: Build and Test
1919
run: sbt -v +test

.github/workflows/release.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,10 @@ on:
55

66
jobs:
77
release:
8-
uses: guardian/gha-scala-library-release-workflow/.github/workflows/reusable-release.yml@v1
8+
uses: guardian/gha-scala-library-release-workflow/.github/workflows/reusable-release.yml@v2
99
permissions: { contents: write, pull-requests: write }
1010
with:
1111
GITHUB_APP_ID: 930725
12-
SONATYPE_PROFILE_NAME: 'com.madgag'
13-
SONATYPE_CREDENTIAL_HOST: 's01.oss.sonatype.org'
1412
secrets:
1513
SONATYPE_TOKEN: ${{ secrets.AUTOMATED_MAVEN_RELEASE_SONATYPE_TOKEN }}
1614
PGP_PRIVATE_KEY: ${{ secrets.AUTOMATED_MAVEN_RELEASE_PGP_SECRET }}

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
java corretto-11.0.25.9.1
1+
java corretto-21.0.3.9.1

project/Dependencies.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ import sbt._
22

33
object Dependencies {
44

5-
val jgit = "org.eclipse.jgit" % "org.eclipse.jgit" % "6.10.0.202406032230-r"
5+
val jgit = "org.eclipse.jgit" % "org.eclipse.jgit" % "7.3.0.202506031305-r"
66

77
val scalatest = "org.scalatest" %% "scalatest" % "3.2.19"
88

99
val madgagCompress = "com.madgag" % "util-compress" % "1.35"
1010

11-
val guava = Seq("com.google.guava" % "guava" % "33.4.0-jre", "com.google.code.findbugs" % "jsr305" % "3.0.2")
11+
val guava = Seq("com.google.guava" % "guava" % "33.4.8-jre", "com.google.code.findbugs" % "jsr305" % "3.0.2")
1212

1313
}

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.10.7
1+
sbt.version=1.11.4

project/plugins.sbt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
addSbtPlugin("com.github.sbt" % "sbt-release" % "1.4.0")
22

3-
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.12.2")
4-
53
addSbtPlugin("ch.epfl.scala" % "sbt-version-policy" % "3.2.1")

0 commit comments

Comments
 (0)