Skip to content

Commit

Permalink
chore(deps): update it-at-m/lhm_actions action to v1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Mar 10, 2025
1 parent cb2b511 commit 6690007
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- id: build_docs
uses: it-at-m/lhm_actions/action-templates/actions/action-build-docs@0adbb607339cb32296289c8c319970b9ef2121cb # v1.0.2
uses: it-at-m/lhm_actions/action-templates/actions/action-build-docs@175e2b8e7162b91368e37f1ea5b74bf5ec3ee10a # v1.0.4
- 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@0adbb607339cb32296289c8c319970b9ef2121cb # v1.0.2
uses: it-at-m/lhm_actions/action-templates/actions/action-deploy-docs@175e2b8e7162b91368e37f1ea5b74bf5ec3ee10a # v1.0.4
8 changes: 4 additions & 4 deletions .github/workflows/maven-node-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,19 @@ jobs:
- app-path: refarch-webcomponent

steps:
- uses: it-at-m/lhm_actions/action-templates/actions/action-checkout@0adbb607339cb32296289c8c319970b9ef2121cb # v1.0.2
- uses: it-at-m/lhm_actions/action-templates/actions/action-checkout@175e2b8e7162b91368e37f1ea5b74bf5ec3ee10a # v1.0.4
- if: ${{hashFiles(format('./{0}/package.json', matrix.app-path))!=null}}
id: node
uses: it-at-m/lhm_actions/action-templates/actions/action-npm-build@0adbb607339cb32296289c8c319970b9ef2121cb # v1.0.2
uses: it-at-m/lhm_actions/action-templates/actions/action-npm-build@175e2b8e7162b91368e37f1ea5b74bf5ec3ee10a # v1.0.4
with:
app-path: "${{ matrix.app-path }}"
- if: ${{hashFiles(format('./{0}/pom.xml', matrix.app-path))!=null}}
id: maven
uses: it-at-m/lhm_actions/action-templates/actions/action-maven-build@0adbb607339cb32296289c8c319970b9ef2121cb # v1.0.2
uses: it-at-m/lhm_actions/action-templates/actions/action-maven-build@175e2b8e7162b91368e37f1ea5b74bf5ec3ee10a # v1.0.4
with:
app-path: "${{ matrix.app-path }}"
- if: github.ref == 'refs/heads/main'
uses: it-at-m/lhm_actions/action-templates/actions/action-build-image@0adbb607339cb32296289c8c319970b9ef2121cb # v1.0.2
uses: it-at-m/lhm_actions/action-templates/actions/action-build-image@175e2b8e7162b91368e37f1ea5b74bf5ec3ee10a # v1.0.4
with:
path: "${{ matrix.app-path }}"
image-name: "${{ matrix.app-path }}"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/maven-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
TZ: Europe/Berlin # timezone
steps:
- id: maven-release-step
uses: it-at-m/lhm_actions/action-templates/actions/action-maven-release@0adbb607339cb32296289c8c319970b9ef2121cb # v1.0.2
uses: it-at-m/lhm_actions/action-templates/actions/action-maven-release@175e2b8e7162b91368e37f1ea5b74bf5ec3ee10a # v1.0.4
with:
app-path: "/${{ github.event.inputs.app-path }}"
releaseVersion: "${{ github.event.inputs.releaseVersion }}"
Expand All @@ -43,7 +43,7 @@ jobs:
runs-on: ubuntu-latest
needs: release-maven
steps:
- uses: it-at-m/lhm_actions/action-templates/actions/action-build-image@0adbb607339cb32296289c8c319970b9ef2121cb # v1.0.2
- uses: it-at-m/lhm_actions/action-templates/actions/action-build-image@175e2b8e7162b91368e37f1ea5b74bf5ec3ee10a # v1.0.4
with:
path: "${{ github.event.inputs.app-path }}"
image-name: "${{ github.event.inputs.app-path }}"
Expand All @@ -58,7 +58,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download a single artifact
uses: it-at-m/lhm_actions/action-templates/actions/action-create-github-release@0adbb607339cb32296289c8c319970b9ef2121cb # v1.0.2
uses: it-at-m/lhm_actions/action-templates/actions/action-create-github-release@175e2b8e7162b91368e37f1ea5b74bf5ec3ee10a # v1.0.4
with:
artifact-name: ${{ needs.release-maven.outputs.ARTIFACT_NAME }}
tag-name: ${{needs.release-maven.outputs.MVN_ARTIFACT_ID}}-${{ github.event.inputs.releaseVersion }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/npm-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ 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@0adbb607339cb32296289c8c319970b9ef2121cb # v1.0.2
uses: it-at-m/lhm_actions/action-templates/actions/action-npm-release@175e2b8e7162b91368e37f1ea5b74bf5ec3ee10a # v1.0.4
with:
app-path: ${{inputs.app-path}}
releaseVersion: ${{inputs.release-version}}
Expand All @@ -41,7 +41,7 @@ jobs:
runs-on: ubuntu-latest
needs: release
steps:
- uses: it-at-m/lhm_actions/action-templates/actions/action-build-image@0adbb607339cb32296289c8c319970b9ef2121cb # v1.0.2
- uses: it-at-m/lhm_actions/action-templates/actions/action-build-image@175e2b8e7162b91368e37f1ea5b74bf5ec3ee10a # v1.0.4
with:
path: "${{ inputs.app-path }}"
image-name: "${{ inputs.app-path }}"
Expand All @@ -57,7 +57,7 @@ jobs:
steps:
- name: Create GitHub Release
id: create_release
uses: it-at-m/lhm_actions/action-templates/actions/action-create-github-release@0adbb607339cb32296289c8c319970b9ef2121cb # v1.0.2
uses: it-at-m/lhm_actions/action-templates/actions/action-create-github-release@175e2b8e7162b91368e37f1ea5b74bf5ec3ee10a # v1.0.4
with:
artifact-name: ${{ needs.release.outputs.ARTIFACT_NAME }}
tag-name: ${{ needs.release.outputs.ARTIFACT_VERSION }}
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@0adbb607339cb32296289c8c319970b9ef2121cb # v1.0.2
- uses: it-at-m/lhm_actions/action-templates/actions/action-pr-checklist@175e2b8e7162b91368e37f1ea5b74bf5ec3ee10a # v1.0.4

0 comments on commit 6690007

Please sign in to comment.