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_kotlin_tests:
name: Run kotlin tests
Expand All @@ -20,7 +23,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-timetables-api
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,10 +3,13 @@ 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
checkout_submodules: recursive
5 changes: 4 additions & 1 deletion .github/workflows/run-kotlin-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
# this workflow is only called by others, won't be executed on itself
workflow_call:

permissions:
contents: read

env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -14,7 +17,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: recursive

Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/test-docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
pull_request:
branches: [main, releases/**]

permissions:
contents: read

env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -15,7 +18,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: recursive

Expand Down
Loading