Skip to content

Commit f13e037

Browse files
author
Harald Okorn
committed
Merge remote-tracking branch 'origin/main' into feature/wal-1186
2 parents a95cd26 + f4b663b commit f13e037

200 files changed

Lines changed: 10197 additions & 1983 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/android-device-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }}
4141
steps:
4242
- name: Checkout all repos with ref fallback
43-
uses: walt-id/waltid-identity/.github/actions/checkout-repos@4296a7f80cacf7e60cb1a20321956768892eb7e3
43+
uses: walt-id/waltid-identity/.github/actions/checkout-repos@73cf58a0edcc4c978304fdfd1a91372d34f65da2
4444
with:
4545
token: ${{ secrets.GH_ACCESS_TOKEN || github.token }}
4646
ref: ${{ github.event.pull_request.head.ref || github.head_ref || github.ref_name }}

.github/workflows/api-docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
include: ${{ fromJSON(inputs.images) }}
3737
steps:
3838
- name: Checkout all repos with ref fallback
39-
uses: walt-id/waltid-identity/.github/actions/checkout-repos@864f84343fdeea17f6f63434bc8036c39f178dc7
39+
uses: walt-id/waltid-identity/.github/actions/checkout-repos@73cf58a0edcc4c978304fdfd1a91372d34f65da2
4040
with:
4141
token: ${{ secrets.GH_ACCESS_TOKEN }}
4242
- name: Configure gradle

.github/workflows/branch-deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
jsonpath: ".github/workflows/data/docker-matrix.json"
2121
docker:
22-
uses: walt-id/waltid-identity/.github/workflows/docker.yml@6bb27c98fb66d9525dcc5ed8b0e703ff07a18c4a
22+
uses: walt-id/waltid-identity/.github/workflows/docker.yml@0601e9b457f63238dfbc2a9a4fa54b7b1aee0a9d
2323
secrets: inherit
2424
needs: [ version, docker-matrix ]
2525
with:
@@ -32,7 +32,7 @@ jobs:
3232
with:
3333
jsonpath: ".github/workflows/data/api-docker-matrix.json"
3434
api-docker:
35-
uses: walt-id/waltid-identity/.github/workflows/api-docker.yml@6bb27c98fb66d9525dcc5ed8b0e703ff07a18c4a
35+
uses: walt-id/waltid-identity/.github/workflows/api-docker.yml@0601e9b457f63238dfbc2a9a4fa54b7b1aee0a9d
3636
secrets: inherit
3737
needs: [ version, api-docker-matrix ]
3838
with:
@@ -41,7 +41,7 @@ jobs:
4141
tags: '["dev", "latest"]'
4242
publish: true
4343
deploy:
44-
uses: walt-id/waltid-identity/.github/workflows/helm-deployment.yml@6bb27c98fb66d9525dcc5ed8b0e703ff07a18c4a
44+
uses: walt-id/waltid-identity/.github/workflows/helm-deployment.yml@0601e9b457f63238dfbc2a9a4fa54b7b1aee0a9d
4545
secrets: inherit
4646
needs: [ version, docker, api-docker ]
4747
with:

.github/workflows/build.yml

Lines changed: 16 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,22 @@
11
name: Build on every push
22

33
on:
4+
pull_request:
5+
types: [opened, synchronize, reopened]
6+
paths-ignore: &docs-and-assets
7+
- '**/*.md'
8+
- '**/*.png'
9+
- '**/*.jpg'
10+
- '**/*.webp'
11+
- '**/*.svg'
12+
- '**/*.ico'
13+
- '**/LICENSE'
14+
- '.github/ISSUE_TEMPLATE/**'
15+
- '.github/PULL_REQUEST_TEMPLATE.md'
16+
- 'docs/**'
417
push:
18+
branches: [main]
19+
paths-ignore: *docs-and-assets
520

621
concurrency:
722
group: ${{ github.workflow }}-${{ github.ref }}
@@ -20,7 +35,7 @@ jobs:
2035
version:
2136
uses: walt-id/waltid-identity/.github/workflows/version.yml@6bb27c98fb66d9525dcc5ed8b0e703ff07a18c4a
2237
gradle-build:
23-
uses: walt-id/waltid-identity/.github/workflows/gradle.yml@6bb27c98fb66d9525dcc5ed8b0e703ff07a18c4a
38+
uses: walt-id/waltid-identity/.github/workflows/gradle.yml@0601e9b457f63238dfbc2a9a4fa54b7b1aee0a9d
2439
secrets: inherit
2540
needs:
2641
- android-eligibility
@@ -29,36 +44,3 @@ jobs:
2944
version: ${{ needs.version.outputs.release_version }}
3045
enable-android-build: ${{ needs.android-eligibility.outputs.should-run == 'true' }}
3146
report-check-name: 'gradle-build / gradle (ubuntu-22.04)'
32-
docker-matrix:
33-
uses: walt-id/waltid-identity/.github/workflows/load-json.yml@6bb27c98fb66d9525dcc5ed8b0e703ff07a18c4a
34-
with:
35-
jsonpath: ".github/workflows/data/docker-matrix.json"
36-
docker:
37-
uses: walt-id/waltid-identity/.github/workflows/docker.yml@6bb27c98fb66d9525dcc5ed8b0e703ff07a18c4a
38-
secrets: inherit
39-
needs: [ version, docker-matrix ]
40-
with:
41-
images: ${{ needs.docker-matrix.outputs.json }}
42-
version: ${{ needs.version.outputs.release_version }}
43-
artifact: true
44-
api-docker-matrix:
45-
uses: walt-id/waltid-identity/.github/workflows/load-json.yml@6bb27c98fb66d9525dcc5ed8b0e703ff07a18c4a
46-
with:
47-
jsonpath: ".github/workflows/data/api-docker-matrix.json"
48-
api-docker:
49-
uses: walt-id/waltid-identity/.github/workflows/api-docker.yml@6bb27c98fb66d9525dcc5ed8b0e703ff07a18c4a
50-
secrets: inherit
51-
needs: [ version, api-docker-matrix ]
52-
with:
53-
images: ${{ needs.api-docker-matrix.outputs.json }}
54-
version: ${{ needs.version.outputs.release_version }}
55-
artifact: true
56-
ebsi-ct-v3:
57-
# disabled job because of ebsi certificate issues (expired certificate)
58-
if: false
59-
uses: walt-id/waltid-identity/.github/workflows/ebsictv3.yml@6bb27c98fb66d9525dcc5ed8b0e703ff07a18c4a
60-
needs: [ version, docker, api-docker ]
61-
secrets: inherit
62-
with:
63-
artifact: issuer-api
64-
tag: "waltid/issuer-api:${{ needs.version.outputs.release_version }}"

.github/workflows/create-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-22.04
2727
steps:
2828
- name: Checkout all repos with ref fallback
29-
uses: walt-id/waltid-identity/.github/actions/checkout-repos@864f84343fdeea17f6f63434bc8036c39f178dc7
29+
uses: walt-id/waltid-identity/.github/actions/checkout-repos@73cf58a0edcc4c978304fdfd1a91372d34f65da2
3030
with:
3131
token: ${{ secrets.GH_ACCESS_TOKEN }}
3232

.github/workflows/deployment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080

8181
steps:
8282
- name: Checkout all repos with ref fallback
83-
uses: walt-id/waltid-identity/.github/actions/checkout-repos@864f84343fdeea17f6f63434bc8036c39f178dc7
83+
uses: walt-id/waltid-identity/.github/actions/checkout-repos@73cf58a0edcc4c978304fdfd1a91372d34f65da2
8484
with:
8585
token: ${{ secrets.GH_ACCESS_TOKEN }}
8686

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
echo "${{ matrix.image }}::: ${{ inputs.tag }} / ${{ inputs.version }}"
4040
4141
- name: Checkout all repos with ref fallback
42-
uses: walt-id/waltid-identity/.github/actions/checkout-repos@864f84343fdeea17f6f63434bc8036c39f178dc7
42+
uses: walt-id/waltid-identity/.github/actions/checkout-repos@73cf58a0edcc4c978304fdfd1a91372d34f65da2
4343
with:
4444
token: ${{ secrets.GH_ACCESS_TOKEN }}
4545

.github/workflows/fix-release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
with:
1414
preferred: ${{ inputs.release_version }}
1515
gradle:
16-
uses: walt-id/waltid-identity/.github/workflows/gradle.yml@6bb27c98fb66d9525dcc5ed8b0e703ff07a18c4a
16+
uses: walt-id/waltid-identity/.github/workflows/gradle.yml@0601e9b457f63238dfbc2a9a4fa54b7b1aee0a9d
1717
secrets: inherit
1818
needs: version
1919
with:
@@ -26,7 +26,7 @@ jobs:
2626
with:
2727
jsonpath: ".github/workflows/data/docker-matrix.json"
2828
docker:
29-
uses: walt-id/waltid-identity/.github/workflows/docker.yml@6bb27c98fb66d9525dcc5ed8b0e703ff07a18c4a
29+
uses: walt-id/waltid-identity/.github/workflows/docker.yml@0601e9b457f63238dfbc2a9a4fa54b7b1aee0a9d
3030
secrets: inherit
3131
needs: [ version, docker-matrix ]
3232
with:
@@ -38,7 +38,7 @@ jobs:
3838
with:
3939
jsonpath: ".github/workflows/data/api-docker-matrix.json"
4040
api-docker:
41-
uses: walt-id/waltid-identity/.github/workflows/api-docker.yml@6bb27c98fb66d9525dcc5ed8b0e703ff07a18c4a
41+
uses: walt-id/waltid-identity/.github/workflows/api-docker.yml@0601e9b457f63238dfbc2a9a4fa54b7b1aee0a9d
4242
secrets: inherit
4343
needs: [ version, api-docker-matrix ]
4444
with:
@@ -85,7 +85,7 @@ jobs:
8585
repository: walt-id/waltid-unified-build
8686
ref: ${{ github.ref_name }}
8787
release:
88-
uses: walt-id/waltid-identity/.github/workflows/create-release.yml@6bb27c98fb66d9525dcc5ed8b0e703ff07a18c4a
88+
uses: walt-id/waltid-identity/.github/workflows/create-release.yml@0601e9b457f63238dfbc2a9a4fa54b7b1aee0a9d
8989
secrets: inherit
9090
needs: [ version, tag ]
9191
with:

.github/workflows/gradle-macos.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
runs-on: macos-26
3737
steps:
3838
- name: Checkout all repos with ref fallback
39-
uses: walt-id/waltid-identity/.github/actions/checkout-repos@4296a7f80cacf7e60cb1a20321956768892eb7e3
39+
uses: walt-id/waltid-identity/.github/actions/checkout-repos@73cf58a0edcc4c978304fdfd1a91372d34f65da2
4040
with:
4141
token: ${{ secrets.GH_ACCESS_TOKEN || github.token }}
4242
ref: ${{ github.head_ref || github.ref_name }}
@@ -66,7 +66,7 @@ jobs:
6666
runs-on: macos-26
6767
steps:
6868
- name: Checkout all repos with ref fallback
69-
uses: walt-id/waltid-identity/.github/actions/checkout-repos@4296a7f80cacf7e60cb1a20321956768892eb7e3
69+
uses: walt-id/waltid-identity/.github/actions/checkout-repos@73cf58a0edcc4c978304fdfd1a91372d34f65da2
7070
with:
7171
token: ${{ secrets.GH_ACCESS_TOKEN || github.token }}
7272
ref: ${{ github.head_ref || github.ref_name }}
@@ -96,7 +96,7 @@ jobs:
9696
runs-on: macos-26
9797
steps:
9898
- name: Checkout all repos with ref fallback
99-
uses: walt-id/waltid-identity/.github/actions/checkout-repos@4296a7f80cacf7e60cb1a20321956768892eb7e3
99+
uses: walt-id/waltid-identity/.github/actions/checkout-repos@73cf58a0edcc4c978304fdfd1a91372d34f65da2
100100
with:
101101
token: ${{ secrets.GH_ACCESS_TOKEN || github.token }}
102102
ref: ${{ github.head_ref || github.ref_name }}
@@ -127,7 +127,7 @@ jobs:
127127
runs-on: macos-26
128128
steps:
129129
- name: Checkout all repos with ref fallback
130-
uses: walt-id/waltid-identity/.github/actions/checkout-repos@4296a7f80cacf7e60cb1a20321956768892eb7e3
130+
uses: walt-id/waltid-identity/.github/actions/checkout-repos@73cf58a0edcc4c978304fdfd1a91372d34f65da2
131131
with:
132132
token: ${{ secrets.GH_ACCESS_TOKEN || github.token }}
133133
ref: ${{ github.head_ref || github.ref_name }}

.github/workflows/gradle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
sudo swapon /swapfile
3939
4040
- name: Checkout all repos with ref fallback
41-
uses: walt-id/waltid-identity/.github/actions/checkout-repos@864f84343fdeea17f6f63434bc8036c39f178dc7
41+
uses: walt-id/waltid-identity/.github/actions/checkout-repos@73cf58a0edcc4c978304fdfd1a91372d34f65da2
4242
with:
4343
token: ${{ secrets.GH_ACCESS_TOKEN }}
4444

0 commit comments

Comments
 (0)