Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update walt-id/waltid-identity requirement to a89c22088e7a1f397ed4c24e35554023c27f5c6e #951

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,25 +11,25 @@ concurrency:

jobs:
version:
uses: walt-id/waltid-identity/.github/workflows/version.yml@266f5c09359450c39019a6da38f2b331e7122918
uses: walt-id/waltid-identity/.github/workflows/version.yml@a89c22088e7a1f397ed4c24e35554023c27f5c6e
gradle-build:
uses: walt-id/waltid-identity/.github/workflows/gradle.yml@d3e3284f901bef1e6d80b35720fbae5e4b49a95a
uses: walt-id/waltid-identity/.github/workflows/gradle.yml@a89c22088e7a1f397ed4c24e35554023c27f5c6e
needs: version
with:
version: ${{ needs.version.outputs.release_version }}
docker-matrix:
uses: walt-id/waltid-identity/.github/workflows/load-json.yml@927c4233610e90dd8a57418662fad7293b7b29a4
uses: walt-id/waltid-identity/.github/workflows/load-json.yml@a89c22088e7a1f397ed4c24e35554023c27f5c6e
with:
jsonpath: ".github/workflows/data/docker-matrix.json"
docker:
uses: walt-id/waltid-identity/.github/workflows/docker.yml@a82cb3363b9ffc14fde08d787383318f83cb99be
uses: walt-id/waltid-identity/.github/workflows/docker.yml@a89c22088e7a1f397ed4c24e35554023c27f5c6e
needs: [ version, docker-matrix ]
with:
images: ${{ needs.docker-matrix.outputs.json }}
version: ${{ needs.version.outputs.release_version }}
artifact: true
ebsi-ct-v3:
uses: walt-id/waltid-identity/.github/workflows/ebsictv3.yml@a82cb3363b9ffc14fde08d787383318f83cb99be
uses: walt-id/waltid-identity/.github/workflows/ebsictv3.yml@a89c22088e7a1f397ed4c24e35554023c27f5c6e
needs: [ version, docker ]
secrets: inherit
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
- name: Configure gradle
uses: walt-id/waltid-identity/.github/actions/gradle-setup-action@f7b46c8ae1c27f1a0873a5ca8dfb0440c77381ec
uses: walt-id/waltid-identity/.github/actions/gradle-setup-action@a89c22088e7a1f397ed4c24e35554023c27f5c6e
- name: Set version
run: |
sed -i "s/1.0.0-SNAPSHOT/${{ inputs.version }}/g" build.gradle.kts
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,35 +7,35 @@ on:

jobs:
version:
uses: walt-id/waltid-identity/.github/workflows/version.yml@266f5c09359450c39019a6da38f2b331e7122918
uses: walt-id/waltid-identity/.github/workflows/version.yml@a89c22088e7a1f397ed4c24e35554023c27f5c6e
with:
suffix: -SNAPSHOT
gradle:
uses: walt-id/waltid-identity/.github/workflows/gradle.yml@d3e3284f901bef1e6d80b35720fbae5e4b49a95a
uses: walt-id/waltid-identity/.github/workflows/gradle.yml@a89c22088e7a1f397ed4c24e35554023c27f5c6e
secrets: inherit
needs: version
with:
version: ${{ needs.version.outputs.release_version }}
publish: true
docker-matrix:
uses: walt-id/waltid-identity/.github/workflows/load-json.yml@927c4233610e90dd8a57418662fad7293b7b29a4
uses: walt-id/waltid-identity/.github/workflows/load-json.yml@a89c22088e7a1f397ed4c24e35554023c27f5c6e
with:
jsonpath: ".github/workflows/data/docker-matrix.json"
docker:
uses: walt-id/waltid-identity/.github/workflows/docker.yml@a82cb3363b9ffc14fde08d787383318f83cb99be
uses: walt-id/waltid-identity/.github/workflows/docker.yml@a89c22088e7a1f397ed4c24e35554023c27f5c6e
secrets: inherit
needs: [ version, docker-matrix ]
with:
images: ${{ needs.docker-matrix.outputs.json }}
version: ${{ needs.version.outputs.release_version }}
publish: true
tag:
uses: walt-id/waltid-identity/.github/workflows/tag.yml@266f5c09359450c39019a6da38f2b331e7122918
uses: walt-id/waltid-identity/.github/workflows/tag.yml@a89c22088e7a1f397ed4c24e35554023c27f5c6e
needs: [ version, gradle, docker ]
with:
version: ${{ needs.version.outputs.release_version }}
pre-release:
uses: walt-id/waltid-identity/.github/workflows/changelog.yml@266f5c09359450c39019a6da38f2b331e7122918
uses: walt-id/waltid-identity/.github/workflows/changelog.yml@a89c22088e7a1f397ed4c24e35554023c27f5c6e
secrets: inherit
needs: [ tag ]
with:
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,22 @@ on:

jobs:
version:
uses: walt-id/waltid-identity/.github/workflows/version.yml@266f5c09359450c39019a6da38f2b331e7122918
uses: walt-id/waltid-identity/.github/workflows/version.yml@a89c22088e7a1f397ed4c24e35554023c27f5c6e
with:
preferred: ${{ inputs.release_version }}
gradle:
uses: walt-id/waltid-identity/.github/workflows/gradle.yml@d3e3284f901bef1e6d80b35720fbae5e4b49a95a
uses: walt-id/waltid-identity/.github/workflows/gradle.yml@a89c22088e7a1f397ed4c24e35554023c27f5c6e
secrets: inherit
needs: version
with:
version: ${{ needs.version.outputs.release_version }}
publish: true
docker-matrix:
uses: walt-id/waltid-identity/.github/workflows/load-json.yml@927c4233610e90dd8a57418662fad7293b7b29a4
uses: walt-id/waltid-identity/.github/workflows/load-json.yml@a89c22088e7a1f397ed4c24e35554023c27f5c6e
with:
jsonpath: ".github/workflows/data/docker-matrix.json"
docker:
uses: walt-id/waltid-identity/.github/workflows/docker.yml@a82cb3363b9ffc14fde08d787383318f83cb99be
uses: walt-id/waltid-identity/.github/workflows/docker.yml@a89c22088e7a1f397ed4c24e35554023c27f5c6e
secrets: inherit
needs: [ version, docker-matrix ]
with:
Expand All @@ -33,7 +33,7 @@ jobs:
tag: latest
publish: true
deploy:
uses: walt-id/waltid-identity/.github/workflows/deployment.yml@dd9e94a2b08b2f9917d56543061963e6757def1f
uses: walt-id/waltid-identity/.github/workflows/deployment.yml@a89c22088e7a1f397ed4c24e35554023c27f5c6e
secrets: inherit
needs: [ version, gradle, docker ]
with:
Expand All @@ -43,12 +43,12 @@ jobs:
portals: portals
kubeconfig_secret: NL_KUBE_CONFIG
tag:
uses: walt-id/waltid-identity/.github/workflows/tag.yml@266f5c09359450c39019a6da38f2b331e7122918
uses: walt-id/waltid-identity/.github/workflows/tag.yml@a89c22088e7a1f397ed4c24e35554023c27f5c6e
needs: [ version, deploy ]
with:
version: ${{ needs.version.outputs.release_version }}
release:
uses: walt-id/waltid-identity/.github/workflows/changelog.yml@266f5c09359450c39019a6da38f2b331e7122918
uses: walt-id/waltid-identity/.github/workflows/changelog.yml@a89c22088e7a1f397ed4c24e35554023c27f5c6e
secrets: inherit
needs: [ tag ]
with:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,35 +8,35 @@ on:
required: false
jobs:
version:
uses: walt-id/waltid-identity/.github/workflows/version.yml@266f5c09359450c39019a6da38f2b331e7122918
uses: walt-id/waltid-identity/.github/workflows/version.yml@a89c22088e7a1f397ed4c24e35554023c27f5c6e
with:
preferred: ${{ inputs.release_version }}
gradle:
uses: walt-id/waltid-identity/.github/workflows/gradle.yml@d3e3284f901bef1e6d80b35720fbae5e4b49a95a
uses: walt-id/waltid-identity/.github/workflows/gradle.yml@a89c22088e7a1f397ed4c24e35554023c27f5c6e
secrets: inherit
needs: version
with:
version: ${{ needs.version.outputs.release_version }}
docker-matrix:
uses: walt-id/waltid-identity/.github/workflows/load-json.yml@927c4233610e90dd8a57418662fad7293b7b29a4
uses: walt-id/waltid-identity/.github/workflows/load-json.yml@a89c22088e7a1f397ed4c24e35554023c27f5c6e
with:
jsonpath: ".github/workflows/data/docker-matrix.json"
docker:
uses: walt-id/waltid-identity/.github/workflows/docker.yml@a82cb3363b9ffc14fde08d787383318f83cb99be
uses: walt-id/waltid-identity/.github/workflows/docker.yml@a89c22088e7a1f397ed4c24e35554023c27f5c6e
secrets: inherit
needs: [ version, docker-matrix ]
with:
images: ${{ needs.docker-matrix.outputs.json }}s
version: ${{ needs.version.outputs.release_version }}
publish: true
deploy:
uses: walt-id/waltid-identity/.github/workflows/deployment.yml@7e03d0f22863cac15deafac7292b4c38fd9ba920
uses: walt-id/waltid-identity/.github/workflows/deployment.yml@a89c22088e7a1f397ed4c24e35554023c27f5c6e
secrets: inherit
needs: [ version, gradle, docker ]
with:
version: ${{ needs.version.outputs.release_version }}
tag:
uses: walt-id/waltid-identity/.github/workflows/tag.yml@266f5c09359450c39019a6da38f2b331e7122918
uses: walt-id/waltid-identity/.github/workflows/tag.yml@a89c22088e7a1f397ed4c24e35554023c27f5c6e
needs: [ version, deploy ]
with:
version: ${{ needs.version.outputs.release_version }}
Loading