Skip to content

Commit

Permalink
Merge branch '1.10.x' into update/scala-compiler-2.12.20
Browse files Browse the repository at this point in the history
  • Loading branch information
SethTisue authored Oct 10, 2024
2 parents f09745e + 12042f6 commit 1c93650
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:

jobs:
test:
timeout-minutes: 25
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -73,7 +74,7 @@ jobs:
run: |
sbt -v -Dfile.encoding=UTF-8 "-Dbenchmark.pattern=.*AnalysisFormatBenchmark.*" "runBenchmarks"
- name: Checkout Target Branch (4-6)
if: ${{ github.event_name == 'pull_request' && (matrix.jobtype >= 4 || matrix.jobtype <= 6) }}
if: ${{ github.event_name == 'pull_request' && (matrix.jobtype >= 4 && matrix.jobtype <= 6) }}
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.base.ref }}
Expand Down
16 changes: 16 additions & 0 deletions .github/workflows/dependency-graph.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# .github/workflows/dependency-graph.yml
name: Submit Dependency Graph
on:
push:
branches: [1.10.x] # default branch of the project
permissions: {}
jobs:
submit-graph:
permissions:
contents: write # to submit the dependency graph

name: Submit Dependency Graph
runs-on: ubuntu-latest # or windows-latest, or macOS-latest
steps:
- uses: actions/checkout@v4
- uses: scalacenter/sbt-dependency-submission@v3
3 changes: 2 additions & 1 deletion .scala-steward.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ pullRequests.frequency = "14 days"
updates.ignore = [
# as per discussion on sbt/zinc#1236, this is
# "if it ain't broke don't fix it" territory
{ groupId = "com.google.protobuf" }
{ groupId = "com.google.protobuf" },
{ groupId = "org.eclipse.jgit" }
]
3 changes: 1 addition & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ lazy val zincPersistCore = (project in internalPath / "zinc-persist-core")
crossPaths := false,
autoScalaLibrary := false,
exportJars := true,
ProtobufConfig / version := "3.24.4",
ProtobufConfig / version := "3.25.5",
publish / skip := true,
assembly / assemblyShadeRules := Seq(
ShadeRule
Expand Down Expand Up @@ -686,7 +686,6 @@ lazy val zincScripted = (projectMatrix in internalPath / "zinc-scripted")
.enablePlugins(BuildInfoPlugin)
.settings(
baseSettings,
ideSkipProject := true, // otherwise IntelliJ complains
publish / skip := true,
name := "zinc Scripted",
Compile / buildInfo := Nil, // Only generate build info for tests
Expand Down
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
scalacOptions += "-feature"

addSbtPlugin("com.github.sbt" % "sbt-dynver" % "5.0.1")
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.2.1")
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.3.0")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
addSbtPlugin("org.scala-sbt" % "sbt-contraband" % "0.5.3")
addSbtPlugin("org.scala-sbt" % "sbt-contraband" % "0.6.0")
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.7")
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.10.0")
addSbtPlugin("com.github.sbt" % "sbt-protobuf" % "0.8.0")
Expand Down

0 comments on commit 1c93650

Please sign in to comment.