Skip to content

Commit

Permalink
Update reusable workflows to use latest versions (#491)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinSchmidt committed Sep 26, 2024
1 parent f417ac5 commit a4b4418
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/pullrequest-verify.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-published.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sonarcloud.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

0 comments on commit a4b4418

Please sign in to comment.