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
2 changes: 1 addition & 1 deletion .github/workflows/actionlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ jobs:
name: Run actionlint
runs-on: ubuntu-latest
steps:
- uses: it-at-m/lhm_actions/action-templates/actions/action-actionlint@7bed7092684c0bcc176811016aed27b532aa5f51 # v1.4.0
- uses: it-at-m/lhm_actions/action-templates/actions/action-actionlint@1f4370c5e243b96e9a90d7569b20b535e24e7c17 # v1.5.1
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,21 +22,21 @@ jobs:
- app-path: backend

steps:
- uses: it-at-m/lhm_actions/action-templates/actions/action-checkout@7bed7092684c0bcc176811016aed27b532aa5f51 # v1.4.0
- uses: it-at-m/lhm_actions/action-templates/actions/action-checkout@1f4370c5e243b96e9a90d7569b20b535e24e7c17 # v1.5.1
- id: node # required for steps.* syntax
if: ${{ hashFiles(format('./{0}/package.json', matrix.app-path)) != '' }}
uses: it-at-m/lhm_actions/action-templates/actions/action-npm-build@7bed7092684c0bcc176811016aed27b532aa5f51 # v1.4.0
uses: it-at-m/lhm_actions/action-templates/actions/action-npm-build@1f4370c5e243b96e9a90d7569b20b535e24e7c17 # v1.5.1
with:
app-path: ${{ matrix.app-path }}
node-version: "24"
- id: maven # required for steps.* syntax
if: ${{ hashFiles(format('./{0}/pom.xml', matrix.app-path)) != '' }}
uses: it-at-m/lhm_actions/action-templates/actions/action-maven-build@7bed7092684c0bcc176811016aed27b532aa5f51 # v1.4.0
uses: it-at-m/lhm_actions/action-templates/actions/action-maven-build@1f4370c5e243b96e9a90d7569b20b535e24e7c17 # v1.5.1
with:
app-path: ${{ matrix.app-path }}
java-version: "21"
- if: ${{ github.ref == 'refs/heads/main' && (steps.node.outcome == 'success' || steps.maven.outcome == 'success') }}
uses: it-at-m/lhm_actions/action-templates/actions/action-build-image@7bed7092684c0bcc176811016aed27b532aa5f51 # v1.4.0
uses: it-at-m/lhm_actions/action-templates/actions/action-build-image@1f4370c5e243b96e9a90d7569b20b535e24e7c17 # v1.5.1
with:
path: ${{ matrix.app-path }}
image-name: ${{ matrix.app-path }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ jobs:
analyze-javascript-typescript-vue: ${{ steps.analyze-flags.outputs.analyze-javascript-typescript-vue }}
analyze-python: ${{ steps.analyze-flags.outputs.analyze-python }}
steps:
- uses: it-at-m/lhm_actions/action-templates/actions/action-checkout@7bed7092684c0bcc176811016aed27b532aa5f51 # v1.4.0
- uses: it-at-m/lhm_actions/action-templates/actions/action-checkout@1f4370c5e243b96e9a90d7569b20b535e24e7c17 # v1.5.1
- id: filter
uses: it-at-m/lhm_actions/action-templates/actions/action-filter@7bed7092684c0bcc176811016aed27b532aa5f51 # v1.4.0
uses: it-at-m/lhm_actions/action-templates/actions/action-filter@1f4370c5e243b96e9a90d7569b20b535e24e7c17 # v1.5.1
- id: analyze-flags
run: |
{
Expand All @@ -60,7 +60,7 @@ jobs:
matrix:
build-path: ["./backend"] # JSON array formatted as string, contains the paths to the java projects to build
steps:
- uses: it-at-m/lhm_actions/action-templates/actions/action-codeql@7bed7092684c0bcc176811016aed27b532aa5f51 # v1.4.0
- uses: it-at-m/lhm_actions/action-templates/actions/action-codeql@1f4370c5e243b96e9a90d7569b20b535e24e7c17 # v1.5.1
with:
codeql-language: java-kotlin
codeql-buildmode: ${{ env.java-buildmode }}
Expand All @@ -75,7 +75,7 @@ jobs:
security-events: write
needs: codeql-check-changed-files
steps:
- uses: it-at-m/lhm_actions/action-templates/actions/action-codeql@7bed7092684c0bcc176811016aed27b532aa5f51 # v1.4.0
- uses: it-at-m/lhm_actions/action-templates/actions/action-codeql@1f4370c5e243b96e9a90d7569b20b535e24e7c17 # v1.5.1
with:
codeql-language: javascript-typescript
codeql-query: ${{ env.analysis-query }}
Expand All @@ -87,7 +87,7 @@ jobs:
security-events: write
needs: codeql-check-changed-files
steps:
- uses: it-at-m/lhm_actions/action-templates/actions/action-codeql@7bed7092684c0bcc176811016aed27b532aa5f51 # v1.4.0
- uses: it-at-m/lhm_actions/action-templates/actions/action-codeql@1f4370c5e243b96e9a90d7569b20b535e24e7c17 # v1.5.1
with:
codeql-language: python
codeql-query: ${{ env.analysis-query }}
2 changes: 1 addition & 1 deletion .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ jobs:
dependency-review:
runs-on: ubuntu-latest
steps:
- uses: it-at-m/lhm_actions/action-templates/actions/action-dependency-review@7bed7092684c0bcc176811016aed27b532aa5f51 # v1.4.0
- uses: it-at-m/lhm_actions/action-templates/actions/action-dependency-review@1f4370c5e243b96e9a90d7569b20b535e24e7c17 # v1.5.1
4 changes: 2 additions & 2 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- id: build_docs
uses: it-at-m/lhm_actions/action-templates/actions/action-build-docs@7bed7092684c0bcc176811016aed27b532aa5f51 # v1.4.0
uses: it-at-m/lhm_actions/action-templates/actions/action-build-docs@1f4370c5e243b96e9a90d7569b20b535e24e7c17 # v1.5.1
- id: deploy_docs
# Only deploy documentation from the main branch to prevent unauthorized changes
uses: it-at-m/lhm_actions/action-templates/actions/action-deploy-docs@7bed7092684c0bcc176811016aed27b532aa5f51 # v1.4.0
uses: it-at-m/lhm_actions/action-templates/actions/action-deploy-docs@1f4370c5e243b96e9a90d7569b20b535e24e7c17 # v1.5.1
2 changes: 1 addition & 1 deletion .github/workflows/dockercompose-healthcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: Run docker compose healthcheck
runs-on: ubuntu-latest
steps:
- uses: it-at-m/lhm_actions/action-templates/actions/action-dockercompose-healthcheck@7bed7092684c0bcc176811016aed27b532aa5f51 # v1.4.0
- uses: it-at-m/lhm_actions/action-templates/actions/action-dockercompose-healthcheck@1f4370c5e243b96e9a90d7569b20b535e24e7c17 # v1.5.1
with:
skip-exited: true # required for keycloakmigration init container
compose-file-path: "./stack/"
8 changes: 4 additions & 4 deletions .github/workflows/npm-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ jobs:
ARTIFACT_VERSION: ${{ steps.npm_release.outputs.ARTIFACT_VERSION }}
steps:
- id: npm_release
uses: it-at-m/lhm_actions/action-templates/actions/action-npm-release@7bed7092684c0bcc176811016aed27b532aa5f51 # v1.4.0
uses: it-at-m/lhm_actions/action-templates/actions/action-npm-release@1f4370c5e243b96e9a90d7569b20b535e24e7c17 # v1.5.1
with:
app-path: ${{ inputs.app-path }}
releaseVersion: ${{ inputs.release-version }}
- id: node
uses: it-at-m/lhm_actions/action-templates/actions/action-npm-build@7bed7092684c0bcc176811016aed27b532aa5f51 # v1.4.0
uses: it-at-m/lhm_actions/action-templates/actions/action-npm-build@1f4370c5e243b96e9a90d7569b20b535e24e7c17 # v1.5.1
with:
app-path: ${{ inputs.app-path }}
- if: ${{ !inputs.skip-deployment }}
Expand All @@ -55,7 +55,7 @@ jobs:
runs-on: ubuntu-latest
needs: release
steps:
- uses: it-at-m/lhm_actions/action-templates/actions/action-build-image@7bed7092684c0bcc176811016aed27b532aa5f51 # v1.4.0
- uses: it-at-m/lhm_actions/action-templates/actions/action-build-image@1f4370c5e243b96e9a90d7569b20b535e24e7c17 # v1.5.1
with:
path: ${{ inputs.app-path }}
image-name: ${{ inputs.app-path }}
Expand All @@ -70,7 +70,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Create GitHub Release
uses: it-at-m/lhm_actions/action-templates/actions/action-create-github-release@7bed7092684c0bcc176811016aed27b532aa5f51 # v1.4.0
uses: it-at-m/lhm_actions/action-templates/actions/action-create-github-release@1f4370c5e243b96e9a90d7569b20b535e24e7c17 # v1.5.1
with:
artifact-name: ${{ needs.release.outputs.ARTIFACT_NAME }}
tag-name: ${{ inputs.app-path }}-${{ needs.release.outputs.ARTIFACT_VERSION }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-checklist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ jobs:
pr-checklist:
runs-on: ubuntu-latest
steps:
- uses: it-at-m/lhm_actions/action-templates/actions/action-pr-checklist@7bed7092684c0bcc176811016aed27b532aa5f51 # v1.4.0
- uses: it-at-m/lhm_actions/action-templates/actions/action-pr-checklist@1f4370c5e243b96e9a90d7569b20b535e24e7c17 # v1.5.1
2 changes: 1 addition & 1 deletion .github/workflows/pr-labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ jobs:
issues: write # permission to create labels if not exist
runs-on: ubuntu-latest
steps:
- uses: it-at-m/lhm_actions/action-templates/actions/action-pr-labeler@7bed7092684c0bcc176811016aed27b532aa5f51 # v1.4.0
- uses: it-at-m/lhm_actions/action-templates/actions/action-pr-labeler@1f4370c5e243b96e9a90d7569b20b535e24e7c17 # v1.5.1
6 changes: 3 additions & 3 deletions .github/workflows/release-maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
TZ: Europe/Berlin
steps:
- id: release-maven-artifact
uses: it-at-m/lhm_actions/action-templates/actions/action-maven-release@7bed7092684c0bcc176811016aed27b532aa5f51 # v1.4.0
uses: it-at-m/lhm_actions/action-templates/actions/action-maven-release@1f4370c5e243b96e9a90d7569b20b535e24e7c17 # v1.5.1
with:
app-path: ${{ github.event.inputs.app-path }}
java-version: "21"
Expand All @@ -50,7 +50,7 @@ jobs:
permissions:
packages: write
steps:
- uses: it-at-m/lhm_actions/action-templates/actions/action-build-image@7bed7092684c0bcc176811016aed27b532aa5f51 # v1.4.0
- uses: it-at-m/lhm_actions/action-templates/actions/action-build-image@1f4370c5e243b96e9a90d7569b20b535e24e7c17 # v1.5.1
with:
path: ${{ github.event.inputs.app-path }}
image-name: ${{ github.event.inputs.app-path }}
Expand All @@ -67,7 +67,7 @@ jobs:
permissions:
contents: write
steps:
- uses: it-at-m/lhm_actions/action-templates/actions/action-create-github-release@7bed7092684c0bcc176811016aed27b532aa5f51 # v1.4.0
- uses: it-at-m/lhm_actions/action-templates/actions/action-create-github-release@1f4370c5e243b96e9a90d7569b20b535e24e7c17 # v1.5.1
with:
artifact-name: ${{ needs.release-maven-artifact.outputs.ARTIFACT_NAME }}
tag-name: ${{ inputs.app-path }}-${{ github.event.inputs.releaseVersion }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trivy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ jobs:
if: github.event_name != 'schedule' || github.ref == 'refs/heads/main'
steps:
- name: Run Trivy security check on repository
uses: it-at-m/lhm_actions/action-templates/actions/action-trivy@7bed7092684c0bcc176811016aed27b532aa5f51 # v1.4.0
uses: it-at-m/lhm_actions/action-templates/actions/action-trivy@1f4370c5e243b96e9a90d7569b20b535e24e7c17 # v1.5.1
Loading