From 9cd04132134021fae72fcfe70b1563d655855bf1 Mon Sep 17 00:00:00 2001 From: Seth Tisue Date: Fri, 20 Dec 2024 09:08:53 -0800 Subject: [PATCH] Update README.md --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ee60755..064ce72 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,11 @@ steps: Why is this GitHub Action needed? --------------------------------- -The runner images on GitHub Action has long included `sbt` runner script. The [initial commit on actions/runner-images](https://github.com/actions/runner-images/pull/96) contains `images/linux/scripts/installers/sbt.sh`. However, the situation has changed in May 2024 when GitHub released the runner image for `macos-13` and `macos-14`, users noticed that they were missing the `sbt` runner script. +The runner images on GitHub Action had long included `sbt` runner script. The [initial commit on actions/runner-images](https://github.com/actions/runner-images/pull/96) contains `images/linux/scripts/installers/sbt.sh` + +### May 2024 + +However, the situation has changed in May 2024 when GitHub released the runner image for `macos-13` and `macos-14`, users noticed that they were missing the `sbt` runner script. [actions/runner-images#9369](https://github.com/actions/runner-images/issues/9369) and [actions/runner-images#9837](https://github.com/actions/runner-images/issues/9837) confirmed that this was intentional: @@ -62,6 +66,10 @@ The runner images on GitHub Action has long included `sbt` runner script. The [i Since GitHub Actions are extensible, we thought this providing a setup action would be convenient way to enable `sbt` again on all runner images. +### December 2024 + +The situation changed again in December 2024 when GitHub dropped sbt from `ubuntu-latest`. So now this same action is needed for Ubuntu-based builds, too. + License -------