Skip to content

Commit 45199ed

Browse files
chore: use new CI runner & allowlisted repo (#160)
Co-authored-by: Justin Pihony <[email protected]>
1 parent 9292406 commit 45199ed

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/build-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ permissions:
1313
jobs:
1414
check-code-style:
1515
name: Checks
16-
runs-on: ubuntu-22.04
16+
runs-on: Akka-Default
1717
if: github.event.repository.fork == false
1818
steps:
1919
- name: Checkout
@@ -49,7 +49,7 @@ jobs:
4949
5050
test:
5151
name: Run tests
52-
runs-on: ubuntu-22.04
52+
runs-on: Akka-Default
5353
if: github.event.repository.fork == false
5454
steps:
5555
- name: Checkout
@@ -88,7 +88,7 @@ jobs:
8888
8989
test-docs:
9090
name: Docs
91-
runs-on: ubuntu-22.04
91+
runs-on: Akka-Default
9292
if: github.event.repository.fork == false
9393
steps:
9494
- name: Checkout

.github/workflows/link-validator.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ permissions:
1111

1212
jobs:
1313
validate-links:
14-
runs-on: ubuntu-22.04
14+
runs-on: Akka-Default
1515
if: github.event.repository.fork == false
1616
steps:
1717
- name: Checkout

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212
jobs:
1313
sbt:
1414
name: sbt publish
15-
runs-on: ubuntu-22.04
15+
runs-on: Akka-Default
1616
if: github.event.repository.fork == false
1717
steps:
1818
- name: Checkout
@@ -44,7 +44,7 @@ jobs:
4444

4545
documentation:
4646
name: Documentation
47-
runs-on: ubuntu-22.04
47+
runs-on: Akka-Default
4848
if: github.event.repository.fork == false
4949
steps:
5050
- name: Checkout

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ inThisBuild(
3434
description := "An Akka Persistence plugin backed by Amazon DynamoDB",
3535
// append -SNAPSHOT to version when isSnapshot
3636
dynverSonatypeSnapshots := true,
37-
resolvers += "Akka library repository".at("https://repo.akka.io/maven"),
37+
resolvers += "Akka library repository".at("https://repo.akka.io/maven/github_actions"),
3838
resolvers ++=
3939
(if (Dependencies.AkkaVersion.endsWith("-SNAPSHOT"))
40-
Seq("Akka library snapshot repository".at("https://repo.akka.io/snapshots"))
40+
Seq("Akka library snapshot repository".at("https://repo.akka.io/snapshots/github_actions"))
4141
else Seq.empty)))
4242

4343
val defaultScalacOptions = Seq("-release", "11")

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
resolvers += "Akka library repository".at("https://repo.akka.io/maven")
1+
resolvers += "Akka library repository".at("https://repo.akka.io/maven/github_actions")
22

33
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.10.0") // for maintenance of copyright file header
44
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")

0 commit comments

Comments
 (0)