Skip to content

Commit

Permalink
ci: update reusable workflow references to commit sha
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeplotean committed Jan 14, 2025
1 parent c69d215 commit a902a18
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ on:

jobs:
version:
uses: walt-id/waltid-identity/.github/workflows/version.yml@feat/test-self-hosted-runners
uses: walt-id/waltid-identity/.github/workflows/version.yml@c69d2155372700071dad887fa6339b51e0266be5
gradle-build:
uses: walt-id/waltid-identity/.github/workflows/build-gradle.yml@feat/test-self-hosted-runners
uses: walt-id/waltid-identity/.github/workflows/build-gradle.yml@c69d2155372700071dad887fa6339b51e0266be5
needs: version
with:
version: ${{ needs.version.outputs.release_version }}
docker-build:
uses: walt-id/waltid-identity/.github/workflows/build-docker.yml@feat/test-self-hosted-runners
uses: walt-id/waltid-identity/.github/workflows/build-docker.yml@c69d2155372700071dad887fa6339b51e0266be5
needs: version
with:
version: ${{ needs.version.outputs.release_version }}
10 changes: 5 additions & 5 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,28 +7,28 @@ on:

jobs:
version:
uses: walt-id/waltid-identity/.github/workflows/version.yml@feat/test-self-hosted-runners
uses: walt-id/waltid-identity/.github/workflows/version.yml@c69d2155372700071dad887fa6339b51e0266be5
with:
suffix: -SNAPSHOT
gradle-build:
uses: walt-id/waltid-identity/.github/workflows/build-gradle.yml@feat/test-self-hosted-runners
uses: walt-id/waltid-identity/.github/workflows/build-gradle.yml@c69d2155372700071dad887fa6339b51e0266be5
needs: version
with:
version: ${{ needs.version.outputs.release_version }}
publish: true
docker-build:
uses: walt-id/waltid-identity/.github/workflows/build-docker.yml@feat/test-self-hosted-runners
uses: walt-id/waltid-identity/.github/workflows/build-docker.yml@c69d2155372700071dad887fa6339b51e0266be5
needs: version
with:
version: ${{ needs.version.outputs.release_version }}
publish: true
deploy:
uses: walt-id/waltid-identity/.github/workflows/deployment.yml@feat/test-self-hosted-runners
uses: walt-id/waltid-identity/.github/workflows/deployment.yml@c69d2155372700071dad887fa6339b51e0266be5
needs: [ version, gradle-build, docker-build ]
with:
version: ${{ needs.version.outputs.release_version }}
pre-release:
uses: walt-id/waltid-identity/.github/workflows/changelog.yml@feat/test-self-hosted-runners
uses: walt-id/waltid-identity/.github/workflows/changelog.yml@c69d2155372700071dad887fa6339b51e0266be5
needs: [ version, deploy ]
with:
version: ${{ needs.version.outputs.release_version }}
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,32 +9,32 @@ on:

jobs:
version:
uses: walt-id/waltid-identity/.github/workflows/version.yml@feat/test-self-hosted-runners
uses: walt-id/waltid-identity/.github/workflows/version.yml@c69d2155372700071dad887fa6339b51e0266be5
with:
preferred: ${{ inputs.release_version }}
gradle-build:
uses: walt-id/waltid-identity/.github/workflows/build-gradle.yml@feat/test-self-hosted-runners
uses: walt-id/waltid-identity/.github/workflows/build-gradle.yml@c69d2155372700071dad887fa6339b51e0266be5
needs: version
with:
version: ${{ needs.version.outputs.release_version }}
publish: true
docker-build:
uses: walt-id/waltid-identity/.github/workflows/build-docker.yml@feat/test-self-hosted-runners
uses: walt-id/waltid-identity/.github/workflows/build-docker.yml@c69d2155372700071dad887fa6339b51e0266be5
needs: version
with:
version: ${{ needs.version.outputs.release_version }}
tag: latest
publish: true
deploy:
uses: walt-id/waltid-identity/.github/workflows/deployment.yml@feat/test-self-hosted-runners
uses: walt-id/waltid-identity/.github/workflows/deployment.yml@c69d2155372700071dad887fa6339b51e0266be5
needs: [ version, gradle-build, docker-build ]
with:
version: ${{ needs.version.outputs.release_version }}
deployment: prod
namespace: default
portals: portals
release:
uses: walt-id/waltid-identity/.github/workflows/changelog.yml@feat/test-self-hosted-runners
uses: walt-id/waltid-identity/.github/workflows/changelog.yml@c69d2155372700071dad887fa6339b51e0266be5
needs: [ version, deploy ]
with:
version: ${{ needs.version.outputs.release_version }}
8 changes: 4 additions & 4 deletions .github/workflows/test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,22 @@ on:
required: false
jobs:
version:
uses: walt-id/waltid-identity/.github/workflows/version.yml@feat/test-self-hosted-runners
uses: walt-id/waltid-identity/.github/workflows/version.yml@c69d2155372700071dad887fa6339b51e0266be5
with:
preferred: ${{ inputs.release_version }}
gradle-build:
uses: walt-id/waltid-identity/.github/workflows/build-gradle.yml@feat/test-self-hosted-runners
uses: walt-id/waltid-identity/.github/workflows/build-gradle.yml@c69d2155372700071dad887fa6339b51e0266be5
needs: version
with:
version: ${{ needs.version.outputs.release_version }}
docker-build:
uses: walt-id/waltid-identity/.github/workflows/build-docker.yml@feat/test-self-hosted-runners
uses: walt-id/waltid-identity/.github/workflows/build-docker.yml@c69d2155372700071dad887fa6339b51e0266be5
needs: version
with:
version: ${{ needs.version.outputs.release_version }}
publish: true
deploy:
uses: walt-id/waltid-identity/.github/workflows/deployment.yml@feat/test-self-hosted-runners
uses: walt-id/waltid-identity/.github/workflows/deployment.yml@c69d2155372700071dad887fa6339b51e0266be5
needs: [ version, gradle-build, docker-build ]
with:
version: ${{ needs.version.outputs.release_version }}
Expand Down

0 comments on commit a902a18

Please sign in to comment.