Skip to content
Open
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
9 changes: 8 additions & 1 deletion .github/composite/build-image/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,14 @@ runs:
with:
distribution: "temurin"
java-version: "25"
cache: "maven"

- name: Cache Maven packages
uses: actions/cache@v5
with:
path: |
~/.m2
~/repository
key: ${{ github.job }}-${{ hashFiles('**/pom.xml') }}

- name: Expose GitHub Runtime
uses: crazy-max/ghaction-github-runtime@v3
Expand Down
9 changes: 8 additions & 1 deletion .github/composite/redeploy/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,14 @@ runs:
with:
distribution: "temurin"
java-version: "25"
cache: "maven"

- name: Cache Maven packages
uses: actions/cache@v5
with:
path: |
~/.m2
~/repository
key: ${{ github.job }}-${{ hashFiles('**/pom.xml') }}

- name: Expose GitHub Runtime
uses: crazy-max/ghaction-github-runtime@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/composite/setup-ci/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ runs:
bun-version: latest

- name: Cache Bun dependencies
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ~/.bun/install/cache
key: ${{ runner.os }}-bun-${{ hashFiles('.github/scripts/bun.lock') }}
Expand Down
9 changes: 8 additions & 1 deletion .github/composite/test/backend-pre-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,14 @@ runs:
with:
distribution: "temurin"
java-version: "25"
cache: "maven"

- name: Cache Maven packages
uses: actions/cache@v5
with:
path: |
~/.m2
~/repository
key: ${{ github.job }}-${{ hashFiles('**/pom.xml') }}

- name: Run script
shell: bash
Expand Down
9 changes: 8 additions & 1 deletion .github/composite/test/backend-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,14 @@ runs:
with:
distribution: "temurin"
java-version: "25"
cache: "maven"

- name: Cache Maven packages
uses: actions/cache@v5
with:
path: |
~/.m2
~/repository
key: ${{ github.job }}-${{ hashFiles('**/pom.xml') }}

- name: Expose GitHub Runtime
uses: crazy-max/ghaction-github-runtime@v3
Expand Down
9 changes: 8 additions & 1 deletion .github/composite/test/frontend-pre-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,14 @@ runs:
with:
distribution: "temurin"
java-version: "25"
cache: "maven"

- name: Cache Maven packages
uses: actions/cache@v5
with:
path: |
~/.m2
~/repository
key: ${{ github.job }}-${{ hashFiles('**/pom.xml') }}

- name: Set up pnpm
uses: pnpm/action-setup@master
Expand Down
9 changes: 8 additions & 1 deletion .github/composite/test/frontend-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,14 @@ runs:
with:
distribution: "temurin"
java-version: "25"
cache: "maven"

- name: Cache Maven packages
uses: actions/cache@v5
with:
path: |
~/.m2
~/repository
key: ${{ github.job }}-${{ hashFiles('**/pom.xml') }}

- name: Run script
shell: bash
Expand Down
9 changes: 8 additions & 1 deletion .github/composite/validate-db/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,14 @@ runs:
with:
distribution: "temurin"
java-version: "25"
cache: "maven"

- name: Cache Maven packages
uses: actions/cache@v5
with:
path: |
~/.m2
~/repository
key: ${{ github.job }}-${{ hashFiles('**/pom.xml') }}

- name: Run script
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/scripts/utils/run-local-db.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ async function start() {
-e POSTGRES_PASSWORD=postgres \
-e POSTGRES_DB=codebloom \
-p 5440:5432 \
postgres:16`;
postgres:16-alpine`;

console.log("Waiting for postgres to become ready.");

Expand Down
Loading