Skip to content
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
7 changes: 5 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,13 @@ on:
push:
branches:
- main
- "releases/**"
- releases/**
pull_request:
workflow_dispatch:

permissions:
contents: read

jobs:
run_unit_tests:
name: Run unit tests
Expand All @@ -25,7 +28,7 @@ jobs:
permissions:
id-token: write
contents: read
uses: HSLdevcom/jore4-tools/.github/workflows/shared-build-and-publish-docker-image.yml@shared-build-and-publish-docker-image-v1
uses: HSLdevcom/jore4-tools/.github/workflows/shared-build-and-publish-docker-image.yml@shared-build-and-publish-docker-image-v6
with:
docker_image_name: jore4-auth
build_arm64_image: true
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/check-renovatebot-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@ name: Check renovatebot config
on:
pull_request:

permissions:
contents: read

jobs:
validate:
name: Validate renovatebot config
uses: HSLdevcom/jore4-tools/.github/workflows/shared-check-renovatebot-config.yml@shared-check-renovatebot-config-v1
uses: HSLdevcom/jore4-tools/.github/workflows/shared-check-renovatebot-config.yml@shared-check-renovatebot-config-v2
with:
config_file_path: .github/renovate.json5
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,20 @@ on:
# this workflow is only called by others, won't be executed on itself
workflow_call:

permissions:
contents: read

jobs:
tests:
name: Run auth backend tests
runs-on: ubuntu-24.04

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set up JDK 17
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
java-version: "17"
java-package: jdk
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/ktlint.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,22 @@
name: 'ktlint'
name: ktlint
on:
# this workflow is only called by others, won't be executed on itself
workflow_call:

permissions:
contents: read

jobs:
spotless:
name: Check code is formatted with ktlint
runs-on: ubuntu-24.04

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set up JDK 17
uses: actions/setup-java@v4
uses: actions/setup-java@v5
with:
java-version: "17"
java-package: jdk
Expand Down
Loading