File tree Expand file tree Collapse file tree 7 files changed +15
-15
lines changed Expand file tree Collapse file tree 7 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 7
7
dependency-review :
8
8
runs-on : ubuntu-latest
9
9
steps :
10
- - uses : it-at-m/lhm_actions/action-templates/actions/action-dependency-review@6b19f8dd2bee160bee82bde4fa04ac9f6c1d5e1e # v1.0.5
10
+ - uses : it-at-m/lhm_actions/action-templates/actions/action-dependency-review@9767179088fd2e344d1a24c17404ab809a60f1b6 # v1.0.20
Original file line number Diff line number Diff line change 24
24
runs-on : ubuntu-latest
25
25
steps :
26
26
- id : build_docs
27
- uses : it-at-m/lhm_actions/action-templates/actions/action-build-docs@6b19f8dd2bee160bee82bde4fa04ac9f6c1d5e1e # v1.0.5
27
+ uses : it-at-m/lhm_actions/action-templates/actions/action-build-docs@9767179088fd2e344d1a24c17404ab809a60f1b6 # v1.0.20
28
28
- id : deploy_docs
29
29
# Only deploy documentation from the main branch to prevent unauthorized changes
30
30
31
- uses : it-at-m/lhm_actions/action-templates/actions/action-deploy-docs@6b19f8dd2bee160bee82bde4fa04ac9f6c1d5e1e # v1.0.5
31
+ uses : it-at-m/lhm_actions/action-templates/actions/action-deploy-docs@9767179088fd2e344d1a24c17404ab809a60f1b6 # v1.0.20
Original file line number Diff line number Diff line change @@ -18,19 +18,19 @@ jobs:
18
18
- app-path : captchaservice-backend
19
19
20
20
steps :
21
- - uses : it-at-m/lhm_actions/action-templates/actions/action-checkout@6b19f8dd2bee160bee82bde4fa04ac9f6c1d5e1e # v1.0.5
21
+ - uses : it-at-m/lhm_actions/action-templates/actions/action-checkout@9767179088fd2e344d1a24c17404ab809a60f1b6 # v1.0.20
22
22
- if : ${{hashFiles(format('./{0}/package.json', matrix.app-path))!=null}}
23
23
id : node
24
- uses : it-at-m/lhm_actions/action-templates/actions/action-npm-build@6b19f8dd2bee160bee82bde4fa04ac9f6c1d5e1e # v1.0.5
24
+ uses : it-at-m/lhm_actions/action-templates/actions/action-npm-build@9767179088fd2e344d1a24c17404ab809a60f1b6 # v1.0.20
25
25
with :
26
26
app-path : " ${{ matrix.app-path }}"
27
27
- if : ${{hashFiles(format('./{0}/pom.xml', matrix.app-path))!=null}}
28
28
id : maven
29
- uses : it-at-m/lhm_actions/action-templates/actions/action-maven-build@6b19f8dd2bee160bee82bde4fa04ac9f6c1d5e1e # v1.0.5
29
+ uses : it-at-m/lhm_actions/action-templates/actions/action-maven-build@9767179088fd2e344d1a24c17404ab809a60f1b6 # v1.0.20
30
30
with :
31
31
app-path : " ${{ matrix.app-path }}"
32
32
- if : github.ref == 'refs/heads/main'
33
- uses : it-at-m/lhm_actions/action-templates/actions/action-build-image@6b19f8dd2bee160bee82bde4fa04ac9f6c1d5e1e # v1.0.5
33
+ uses : it-at-m/lhm_actions/action-templates/actions/action-build-image@9767179088fd2e344d1a24c17404ab809a60f1b6 # v1.0.20
34
34
with :
35
35
path : " ${{ matrix.app-path }}"
36
36
image-name : " ${{ matrix.app-path }}"
Original file line number Diff line number Diff line change 28
28
TZ : Europe/Berlin # timezone
29
29
steps :
30
30
- id : maven-release-step
31
- uses : it-at-m/lhm_actions/action-templates/actions/action-maven-release@6b19f8dd2bee160bee82bde4fa04ac9f6c1d5e1e # v1.0.5
31
+ uses : it-at-m/lhm_actions/action-templates/actions/action-maven-release@9767179088fd2e344d1a24c17404ab809a60f1b6 # v1.0.20
32
32
with :
33
33
app-path : " /${{ github.event.inputs.app-path }}"
34
34
releaseVersion : " ${{ github.event.inputs.releaseVersion }}"
42
42
runs-on : ubuntu-latest
43
43
needs : release-maven
44
44
steps :
45
- - uses : it-at-m/lhm_actions/action-templates/actions/action-build-image@6b19f8dd2bee160bee82bde4fa04ac9f6c1d5e1e # v1.0.5
45
+ - uses : it-at-m/lhm_actions/action-templates/actions/action-build-image@9767179088fd2e344d1a24c17404ab809a60f1b6 # v1.0.20
46
46
with :
47
47
path : " ${{ github.event.inputs.app-path }}"
48
48
image-name : " ${{ github.event.inputs.app-path }}"
57
57
runs-on : ubuntu-latest
58
58
steps :
59
59
- name : Download a single artifact
60
- uses : it-at-m/lhm_actions/action-templates/actions/action-create-github-release@6b19f8dd2bee160bee82bde4fa04ac9f6c1d5e1e # v1.0.5
60
+ uses : it-at-m/lhm_actions/action-templates/actions/action-create-github-release@9767179088fd2e344d1a24c17404ab809a60f1b6 # v1.0.20
61
61
with :
62
62
artifact-name : ${{ needs.release-maven.outputs.ARTIFACT_NAME }}
63
63
tag-name : ${{needs.release-maven.outputs.MVN_ARTIFACT_ID}}-${{ github.event.inputs.releaseVersion }}
Original file line number Diff line number Diff line change 32
32
ARTIFACT_VERSION : ${{steps.npm_release.outputs.ARTIFACT_VERSION}}
33
33
steps :
34
34
- id : npm_release
35
- uses : it-at-m/lhm_actions/action-templates/actions/action-npm-release@6b19f8dd2bee160bee82bde4fa04ac9f6c1d5e1e # v1.0.5
35
+ uses : it-at-m/lhm_actions/action-templates/actions/action-npm-release@9767179088fd2e344d1a24c17404ab809a60f1b6 # v1.0.20
36
36
with :
37
37
app-path : ${{inputs.app-path}}
38
38
releaseVersion : ${{inputs.release-version}}
41
41
runs-on : ubuntu-latest
42
42
needs : release
43
43
steps :
44
- - uses : it-at-m/lhm_actions/action-templates/actions/action-build-image@6b19f8dd2bee160bee82bde4fa04ac9f6c1d5e1e # v1.0.5
44
+ - uses : it-at-m/lhm_actions/action-templates/actions/action-build-image@9767179088fd2e344d1a24c17404ab809a60f1b6 # v1.0.20
45
45
with :
46
46
path : " ${{ inputs.app-path }}"
47
47
image-name : " ${{ inputs.app-path }}"
57
57
steps :
58
58
- name : Create GitHub Release
59
59
id : create_release
60
- uses : it-at-m/lhm_actions/action-templates/actions/action-create-github-release@6b19f8dd2bee160bee82bde4fa04ac9f6c1d5e1e # v1.0.5
60
+ uses : it-at-m/lhm_actions/action-templates/actions/action-create-github-release@9767179088fd2e344d1a24c17404ab809a60f1b6 # v1.0.20
61
61
with :
62
62
artifact-name : ${{ needs.release.outputs.ARTIFACT_NAME }}
63
63
tag-name : ${{ needs.release.outputs.ARTIFACT_VERSION }}
Original file line number Diff line number Diff line change 8
8
pr-checklist :
9
9
runs-on : ubuntu-latest
10
10
steps :
11
- - uses : it-at-m/lhm_actions/action-templates/actions/action-pr-checklist@6b19f8dd2bee160bee82bde4fa04ac9f6c1d5e1e # v1.0.5
11
+ - uses : it-at-m/lhm_actions/action-templates/actions/action-pr-checklist@9767179088fd2e344d1a24c17404ab809a60f1b6 # v1.0.20
Original file line number Diff line number Diff line change 10
10
runs-on : ubuntu-latest
11
11
steps :
12
12
- name : " Label PR"
13
- uses : it-at-m/lhm_actions/action-templates/actions/action-pr-labeler@6b19f8dd2bee160bee82bde4fa04ac9f6c1d5e1e # v1.0.5
13
+ uses : it-at-m/lhm_actions/action-templates/actions/action-pr-labeler@9767179088fd2e344d1a24c17404ab809a60f1b6 # v1.0.20
You can’t perform that action at this time.
0 commit comments