Skip to content
This repository was archived by the owner on Apr 28, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/pull-requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

validate-samples:
name: ${{ matrix.framework }} / ${{ matrix.language }} / ${{ matrix.buildtool }}
runs-on: ubuntu-latest
runs-on: Akka-Default-Latest
strategy:
fail-fast: false
matrix:
Expand All @@ -26,8 +26,8 @@ jobs:
framework: akka
buildtool: sbt
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
- uses: actions/checkout@v4
- uses: actions/cache@v4
env:
cache-name: ${{ matrix.framework }}-dependencies-cache-${{ matrix.language }}
with:
Expand All @@ -37,10 +37,12 @@ jobs:
~/.sbt
~/.cache/coursier/v1
key: ${{ runner.os }}-${{ matrix.framework }}-${{ env.cache-name }}
- uses: AdoptOpenJDK/install-jdk@v1
- uses: actions/setup-java@v4
name: Install AdoptOpenJDK 11
with:
version: "11"
- name: Run akka/github-actions-scripts
uses: akka/github-actions-scripts/setup_global_resolver@main
- name: docker-compose up
run: |
pushd ${{ matrix.framework }}/shopping-cart-${{ matrix.language }} && docker-compose up -d && popd
Expand Down
5 changes: 0 additions & 5 deletions akka/shopping-cart-java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,6 @@
</properties>

<repositories>
<repository>
<id>akka-repository</id>
<name>Akka library repository</name>
<url>https://repo.akka.io/maven</url>
</repository>
<repository>
<id>lightbend-commercial</id>
<name>Lightbend Commercial</name>
Expand Down
2 changes: 0 additions & 2 deletions akka/shopping-cart-scala/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,6 @@ dockerUpdateLatest := true

ThisBuild / dynverSeparator := "-"

resolvers += "Akka library repository".at("https://repo.akka.io/maven")

libraryDependencies ++= Seq(
// 1. Basic dependencies for a clustered application
"com.typesafe.akka" %% "akka-stream" % AkkaVersion,
Expand Down
Loading