Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: sbt/setup-sbt
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.1.5
Choose a base ref
...
head repository: sbt/setup-sbt
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.1.6
Choose a head ref
  • 9 commits
  • 5 files changed
  • 3 contributors

Commits on Dec 25, 2024

  1. Update sbt, scripted-plugin to 1.10.7

    scala-steward committed Dec 25, 2024
    Copy the full SHA
    4f17eb6 View commit details

Commits on Dec 26, 2024

  1. Merge pull request #36 from scala-steward/update/sbt-1.10.7

    eed3si9n authored Dec 26, 2024
    Copy the full SHA
    75854e7 View commit details

Commits on Jan 20, 2025

  1. Use Scala Steward postUpdateHooks to update action.yml

    This solutions leverages the Scala Steward `postUpdateHooks` to keep the default
    sbt runner version in sync with the latest sbt version.
    mzuehlke committed Jan 20, 2025
    Copy the full SHA
    236358a View commit details
  2. Merge pull request #37 from mzuehlke/postUpdateHooks

    Use Scala Steward postUpdateHooks to update action.yml
    eed3si9n authored Jan 20, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    8d658e0 View commit details

Commits on Mar 4, 2025

  1. Use String.replace instead of yq for updating the sbt version num…

    …ber in "action.yml"
    mzuehlke committed Mar 4, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    fbd7bb2 View commit details
  2. Merge pull request #39 from mzuehlke/update-using-string-replace

    eed3si9n authored Mar 4, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    a69649b View commit details

Commits on Mar 5, 2025

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    4bbbe6f View commit details
  2. Regenerated action.yml

    Executed command: sbt updateYml
    scala-steward committed Mar 5, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    e35f4d5 View commit details
  3. Merge pull request #40 from scala-steward/update/sbt-1.10.10

    Update sbt, scripted-plugin to 1.10.10
    eed3si9n authored Mar 5, 2025

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    8ee7ec8 View commit details
Showing with 24 additions and 39 deletions.
  1. +0 −37 .github/workflows/update-default.yml
  2. +8 −0 .scala-steward.conf
  3. +1 −1 action.yml
  4. +14 −0 build.sbt
  5. +1 −1 project/build.properties
37 changes: 0 additions & 37 deletions .github/workflows/update-default.yml

This file was deleted.

8 changes: 8 additions & 0 deletions .scala-steward.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
postUpdateHooks = [
{
command = ["sbt", "updateYml"],
commitMessage = "Regenerated action.yml",
groupId = "org.scala-sbt",
artifactId = "sbt"
}
]
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ inputs:
sbt-runner-version:
description: "The runner version (The actual version is controlled via project/build.properties)"
required: true
default: 1.10.7
default: 1.10.10
runs:
using: "composite"
steps:
14 changes: 14 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import java.util.regex.Pattern

TaskKey[Unit]("updateYml") := {

val location = baseDirectory.value / "action.yml"
val oldContent = IO.read(location)

val matcher = Pattern.compile("default: (.+)$", Pattern.MULTILINE).matcher(oldContent)
if (matcher.find) {
val oldVersion = matcher.group(1)
val updatedContent = oldContent.replace(s"default: $oldVersion", s"default: ${sbtVersion.value}")
IO.write(location, updatedContent)
}
}
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.10.6
sbt.version=1.10.10