From a4b4418cc4dcdf5d786dbecbe334f8ffef948210 Mon Sep 17 00:00:00 2001 From: Martin Schmidt Date: Thu, 26 Sep 2024 11:12:26 +0200 Subject: [PATCH] Update reusable workflows to use latest versions (#491) --- .github/workflows/pullrequest-verify.yaml | 10 +++++----- .github/workflows/release-published.yaml | 6 +++--- .github/workflows/sonarcloud.yaml | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/pullrequest-verify.yaml b/.github/workflows/pullrequest-verify.yaml index 91a8dbe5..c9eb59ca 100644 --- a/.github/workflows/pullrequest-verify.yaml +++ b/.github/workflows/pullrequest-verify.yaml @@ -7,19 +7,19 @@ on: jobs: verify-devcontainer: - uses: project-origin/.github/.github/workflows/reusable-verify-devcontainer.yaml@e60d4e84fd4a7ccb2827046672e1bacae91712ae + uses: project-origin/.github/.github/workflows/reusable-verify-devcontainer.yaml@913fee9fea7f2926d09012696be0f9c2cc8c7e45 verify-code: - uses: project-origin/.github/.github/workflows/reusable-verify-code.yaml@e60d4e84fd4a7ccb2827046672e1bacae91712ae + uses: project-origin/.github/.github/workflows/reusable-verify-code.yaml@913fee9fea7f2926d09012696be0f9c2cc8c7e45 verify-renovate-config: - uses: project-origin/.github/.github/workflows/reusable-verify-renovate.yaml@e60d4e84fd4a7ccb2827046672e1bacae91712ae + uses: project-origin/.github/.github/workflows/reusable-verify-renovate.yaml@913fee9fea7f2926d09012696be0f9c2cc8c7e45 verify-chart: - uses: project-origin/.github/.github/workflows/reusable-verify-chart.yaml@e60d4e84fd4a7ccb2827046672e1bacae91712ae + uses: project-origin/.github/.github/workflows/reusable-verify-chart.yaml@913fee9fea7f2926d09012696be0f9c2cc8c7e45 verify-container-build: - uses: project-origin/.github/.github/workflows/reusable-build-push-container-ghcr.yaml@e60d4e84fd4a7ccb2827046672e1bacae91712ae + uses: project-origin/.github/.github/workflows/reusable-build-push-container-ghcr.yaml@913fee9fea7f2926d09012696be0f9c2cc8c7e45 with: imagename: ghcr.io/project-origin/registry-server version: test diff --git a/.github/workflows/release-published.yaml b/.github/workflows/release-published.yaml index 2fe60268..385f77b7 100644 --- a/.github/workflows/release-published.yaml +++ b/.github/workflows/release-published.yaml @@ -6,12 +6,12 @@ on: jobs: define-version: - uses: project-origin/.github/.github/workflows/reusable-tag-version.yaml@e60d4e84fd4a7ccb2827046672e1bacae91712ae + uses: project-origin/.github/.github/workflows/reusable-tag-version.yaml@913fee9fea7f2926d09012696be0f9c2cc8c7e45 publish-container: needs: - define-version - uses: project-origin/.github/.github/workflows/reusable-build-push-container-ghcr.yaml@e60d4e84fd4a7ccb2827046672e1bacae91712ae + uses: project-origin/.github/.github/workflows/reusable-build-push-container-ghcr.yaml@913fee9fea7f2926d09012696be0f9c2cc8c7e45 with: imagename: ghcr.io/project-origin/registry-server version: ${{ needs.define-version.outputs.version }} @@ -23,7 +23,7 @@ jobs: needs: - define-version - publish-container - uses: project-origin/.github/.github/workflows/reusable-publish-chart.yaml@e60d4e84fd4a7ccb2827046672e1bacae91712ae + uses: project-origin/.github/.github/workflows/reusable-publish-chart.yaml@913fee9fea7f2926d09012696be0f9c2cc8c7e45 with: version: ${{ needs.define-version.outputs.version }} chart_folder: chart diff --git a/.github/workflows/sonarcloud.yaml b/.github/workflows/sonarcloud.yaml index 57908d06..85d9faf0 100644 --- a/.github/workflows/sonarcloud.yaml +++ b/.github/workflows/sonarcloud.yaml @@ -10,6 +10,6 @@ on: jobs: analyse: - uses: project-origin/.github/.github/workflows/reusable-sonarcloud.yaml@e60d4e84fd4a7ccb2827046672e1bacae91712ae + uses: project-origin/.github/.github/workflows/reusable-sonarcloud.yaml@913fee9fea7f2926d09012696be0f9c2cc8c7e45 secrets: SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}