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
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@acb09213786b76dd7aa52ec1d901390d28c60eb0 # v1.0.29
- uses: it-at-m/lhm_actions/action-templates/actions/action-actionlint@54b32c7d11363cad45838c9a3d8a8560b93f0e8c # v1.5.4
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,21 @@ jobs:
- app-path: raumreservierung-frontend

steps:
- uses: it-at-m/lhm_actions/action-templates/actions/action-checkout@acb09213786b76dd7aa52ec1d901390d28c60eb0 # v1.0.29
- uses: it-at-m/lhm_actions/action-templates/actions/action-checkout@54b32c7d11363cad45838c9a3d8a8560b93f0e8c # v1.5.4
- 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@acb09213786b76dd7aa52ec1d901390d28c60eb0 # v1.0.29
uses: it-at-m/lhm_actions/action-templates/actions/action-npm-build@54b32c7d11363cad45838c9a3d8a8560b93f0e8c # v1.5.4
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@acb09213786b76dd7aa52ec1d901390d28c60eb0 # v1.0.29
uses: it-at-m/lhm_actions/action-templates/actions/action-maven-build@54b32c7d11363cad45838c9a3d8a8560b93f0e8c # v1.5.4
with:
app-path: ${{ matrix.app-path }}
java-version: "21"
- if: github.ref == 'refs/heads/main'
uses: it-at-m/lhm_actions/action-templates/actions/action-build-image@acb09213786b76dd7aa52ec1d901390d28c60eb0 # v1.0.29
uses: it-at-m/lhm_actions/action-templates/actions/action-build-image@54b32c7d11363cad45838c9a3d8a8560b93f0e8c # v1.5.4
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 @@ -35,9 +35,9 @@ jobs:
javascript-typescript-vue: ${{ steps.filter.outputs.javascript-typescript-vue }}
python: ${{ steps.filter.outputs.python }}
steps:
- uses: it-at-m/lhm_actions/action-templates/actions/action-checkout@acb09213786b76dd7aa52ec1d901390d28c60eb0 # v1.0.29
- uses: it-at-m/lhm_actions/action-templates/actions/action-checkout@54b32c7d11363cad45838c9a3d8a8560b93f0e8c # v1.5.4
- id: filter
uses: it-at-m/lhm_actions/action-templates/actions/action-filter@acb09213786b76dd7aa52ec1d901390d28c60eb0 # v1.0.29
uses: it-at-m/lhm_actions/action-templates/actions/action-filter@54b32c7d11363cad45838c9a3d8a8560b93f0e8c # v1.5.4
codeql-java:
runs-on: ubuntu-latest
permissions:
Expand All @@ -49,7 +49,7 @@ jobs:
matrix:
build-path: ["./raumreservierung-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@acb09213786b76dd7aa52ec1d901390d28c60eb0 # v1.0.29
- uses: it-at-m/lhm_actions/action-templates/actions/action-codeql@54b32c7d11363cad45838c9a3d8a8560b93f0e8c # v1.5.4
if: ${{ env.analyze-java == 'true' && (github.ref_name == 'main' || needs.codeql-check-changed-files.outputs.java == 'true') }}
with:
codeql-language: java-kotlin
Expand All @@ -64,7 +64,7 @@ jobs:
security-events: write
needs: codeql-check-changed-files
steps:
- uses: it-at-m/lhm_actions/action-templates/actions/action-codeql@acb09213786b76dd7aa52ec1d901390d28c60eb0 # v1.0.29
- uses: it-at-m/lhm_actions/action-templates/actions/action-codeql@54b32c7d11363cad45838c9a3d8a8560b93f0e8c # v1.5.4
if: ${{ env.analyze-javascript-typescript-vue == 'true' && (github.ref_name == 'main' || needs.codeql-check-changed-files.outputs.javascript-typescript-vue == 'true') }}
with:
codeql-language: javascript-typescript
Expand All @@ -76,7 +76,7 @@ jobs:
security-events: write
needs: codeql-check-changed-files
steps:
- uses: it-at-m/lhm_actions/action-templates/actions/action-codeql@acb09213786b76dd7aa52ec1d901390d28c60eb0 # v1.0.29
- uses: it-at-m/lhm_actions/action-templates/actions/action-codeql@54b32c7d11363cad45838c9a3d8a8560b93f0e8c # v1.5.4
if: ${{ env.analyze-python == 'true' && (github.ref_name == 'main' || needs.codeql-check-changed-files.outputs.python == 'true') }}
with:
codeql-language: python
Expand Down
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@acb09213786b76dd7aa52ec1d901390d28c60eb0 # v1.0.29
- uses: it-at-m/lhm_actions/action-templates/actions/action-dependency-review@54b32c7d11363cad45838c9a3d8a8560b93f0e8c # v1.5.4
4 changes: 2 additions & 2 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ jobs:
pages: write
id-token: write
steps:
- uses: it-at-m/lhm_actions/action-templates/actions/action-build-docs@acb09213786b76dd7aa52ec1d901390d28c60eb0 # v1.0.29
- uses: it-at-m/lhm_actions/action-templates/actions/action-build-docs@54b32c7d11363cad45838c9a3d8a8560b93f0e8c # v1.5.4
with:
node-version: "24"
# Only deploy documentation from the main branch to prevent unauthorized changes
- uses: it-at-m/lhm_actions/action-templates/actions/action-deploy-docs@acb09213786b76dd7aa52ec1d901390d28c60eb0 # v1.0.29
- uses: it-at-m/lhm_actions/action-templates/actions/action-deploy-docs@54b32c7d11363cad45838c9a3d8a8560b93f0e8c # v1.5.4
2 changes: 1 addition & 1 deletion .github/workflows/dockercompose-healthcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
permissions:
contents: read
steps:
- uses: it-at-m/lhm_actions/action-templates/actions/action-dockercompose-healthcheck@acb09213786b76dd7aa52ec1d901390d28c60eb0 # v1.0.29
- uses: it-at-m/lhm_actions/action-templates/actions/action-dockercompose-healthcheck@54b32c7d11363cad45838c9a3d8a8560b93f0e8c # v1.5.4
with:
skip-exited: true # required for keycloakmigration init container
compose-file-path: "./stack/"
2 changes: 1 addition & 1 deletion .github/workflows/pr-labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,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@acb09213786b76dd7aa52ec1d901390d28c60eb0 # v1.0.29
- uses: it-at-m/lhm_actions/action-templates/actions/action-pr-labeler@54b32c7d11363cad45838c9a3d8a8560b93f0e8c # v1.5.4
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@acb09213786b76dd7aa52ec1d901390d28c60eb0 # v1.0.29
uses: it-at-m/lhm_actions/action-templates/actions/action-maven-release@54b32c7d11363cad45838c9a3d8a8560b93f0e8c # v1.5.4
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@acb09213786b76dd7aa52ec1d901390d28c60eb0 # v1.0.29
- uses: it-at-m/lhm_actions/action-templates/actions/action-build-image@54b32c7d11363cad45838c9a3d8a8560b93f0e8c # v1.5.4
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@acb09213786b76dd7aa52ec1d901390d28c60eb0 # v1.0.29
- uses: it-at-m/lhm_actions/action-templates/actions/action-create-github-release@54b32c7d11363cad45838c9a3d8a8560b93f0e8c # v1.5.4
with:
artifact-name: ${{ needs.release-maven-artifact.outputs.ARTIFACT_NAME }}
tag-name: ${{ inputs.app-path }}-${{ github.event.inputs.releaseVersion }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ jobs:
ARTIFACT_VERSION: ${{ steps.release-npm-artifact.outputs.ARTIFACT_VERSION }}
steps:
- id: release-npm-artifact
uses: it-at-m/lhm_actions/action-templates/actions/action-npm-release@acb09213786b76dd7aa52ec1d901390d28c60eb0 # v1.0.29
uses: it-at-m/lhm_actions/action-templates/actions/action-npm-release@54b32c7d11363cad45838c9a3d8a8560b93f0e8c # v1.5.4
with:
app-path: ${{ inputs.app-path }}
node-version: "24"
releaseVersion: ${{ inputs.release-version }}
use-pr: "true"
- id: build
uses: it-at-m/lhm_actions/action-templates/actions/action-npm-build@acb09213786b76dd7aa52ec1d901390d28c60eb0 # v1.0.29
uses: it-at-m/lhm_actions/action-templates/actions/action-npm-build@54b32c7d11363cad45838c9a3d8a8560b93f0e8c # v1.5.4
with:
app-path: ${{ inputs.app-path }}
node-version: "24"
Expand All @@ -60,7 +60,7 @@ jobs:
permissions:
packages: write
steps:
- uses: it-at-m/lhm_actions/action-templates/actions/action-build-image@acb09213786b76dd7aa52ec1d901390d28c60eb0 # v1.0.29
- uses: it-at-m/lhm_actions/action-templates/actions/action-build-image@54b32c7d11363cad45838c9a3d8a8560b93f0e8c # v1.5.4
with:
path: ${{ inputs.app-path }}
image-name: ${{ inputs.app-path }}
Expand All @@ -77,7 +77,7 @@ jobs:
permissions:
contents: write
steps:
- uses: it-at-m/lhm_actions/action-templates/actions/action-create-github-release@acb09213786b76dd7aa52ec1d901390d28c60eb0 # v1.0.29
- uses: it-at-m/lhm_actions/action-templates/actions/action-create-github-release@54b32c7d11363cad45838c9a3d8a8560b93f0e8c # v1.5.4
with:
artifact-name: ${{ needs.release-npm-artifact.outputs.ARTIFACT_NAME }}
tag-name: ${{ inputs.app-path }}-${{ needs.release-npm-artifact.outputs.ARTIFACT_VERSION }}
2 changes: 1 addition & 1 deletion .github/workflows/trivy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ jobs:
security-events: write # Required to upload SARIF results to the GitHub Security tab
if: github.event_name != 'schedule' || github.ref == 'refs/heads/main'
steps:
- uses: it-at-m/lhm_actions/action-templates/actions/action-trivy@acb09213786b76dd7aa52ec1d901390d28c60eb0 # v1.0.29
- uses: it-at-m/lhm_actions/action-templates/actions/action-trivy@54b32c7d11363cad45838c9a3d8a8560b93f0e8c # v1.5.4
Loading