Skip to content

Commit a78c057

Browse files
committed
fix: use Indicio-tech for indy-shared-gha
Signed-off-by: Kim Ebert <[email protected]>
1 parent e7ba050 commit a78c057

File tree

6 files changed

+21
-21
lines changed

6 files changed

+21
-21
lines changed

.github/workflows/PR.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
uses: actions/checkout@v4
3232
- name: setup
3333
id: setup
34-
uses: hyperledger/indy-shared-gha/.github/actions/workflow-setup@v2
34+
uses: Indicio-tech/indy-shared-gha/.github/actions/workflow-setup@v2
3535
- name: testsNeeded
3636
id: testsNeeded
3737
uses: dorny/paths-filter@v3
@@ -47,12 +47,12 @@ jobs:
4747
name: Lint
4848
needs: [workflow-setup]
4949
if: ${{ needs.workflow-setup.outputs.testsNeeded == 'true' }}
50-
uses: hyperledger/indy-shared-gha/.github/workflows/lint.yaml@v2
50+
uses: Indicio-tech/indy-shared-gha/.github/workflows/lint.yaml@v2
5151

5252
build-image:
5353
name: Create Builder Image
5454
needs: [workflow-setup, lint]
55-
uses: hyperledger/indy-shared-gha/.github/workflows/buildimage.yaml@v2
55+
uses: Indicio-tech/indy-shared-gha/.github/workflows/buildimage.yaml@v2
5656
with:
5757
CACHE_KEY_BUILD: ${{ needs.workflow-setup.outputs.CACHE_KEY_BUILD }}
5858
DOCKER_IMAGE: ghcr.io/${{ needs.workflow-setup.outputs.GITHUB_REPOSITORY_NAME }}/node-build
@@ -61,7 +61,7 @@ jobs:
6161
build_packages:
6262
name: Build Packages
6363
needs: [workflow-setup, build-image]
64-
uses: hyperledger/indy-shared-gha/.github/workflows/buildpackages.yaml@v2
64+
uses: Indicio-tech/indy-shared-gha/.github/workflows/buildpackages.yaml@v2
6565
with:
6666
DOCKER_IMAGE: ghcr.io/${{ needs.workflow-setup.outputs.GITHUB_REPOSITORY_NAME }}/node-build:${{ needs.workflow-setup.outputs.UBUNTU_VERSION }}
6767
UBUNTU_VERSION: ${{ needs.workflow-setup.outputs.UBUNTU_VERSION }}

.github/workflows/Push.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,16 +30,16 @@ jobs:
3030
uses: actions/checkout@v4
3131
- name: setup
3232
id: setup
33-
uses: hyperledger/indy-shared-gha/.github/actions/workflow-setup@v2
33+
uses: Indicio-tech/indy-shared-gha/.github/actions/workflow-setup@v2
3434

3535
lint:
3636
name: Lint
37-
uses: hyperledger/indy-shared-gha/.github/workflows/lint.yaml@v2
37+
uses: Indicio-tech/indy-shared-gha/.github/workflows/lint.yaml@v2
3838

3939
build-image:
4040
name: Create Builder Image
4141
needs: [workflow-setup, lint]
42-
uses: hyperledger/indy-shared-gha/.github/workflows/buildimage.yaml@v2
42+
uses: Indicio-tech/indy-shared-gha/.github/workflows/buildimage.yaml@v2
4343
with:
4444
CACHE_KEY_BUILD: ${{ needs.workflow-setup.outputs.CACHE_KEY_BUILD }}
4545
DOCKER_IMAGE: ghcr.io/${{ needs.workflow-setup.outputs.GITHUB_REPOSITORY_NAME }}/node-build
@@ -48,7 +48,7 @@ jobs:
4848
build_packages:
4949
name: Build Packages
5050
needs: [workflow-setup, build-image]
51-
uses: hyperledger/indy-shared-gha/.github/workflows/buildpackages.yaml@v2
51+
uses: Indicio-tech/indy-shared-gha/.github/workflows/buildpackages.yaml@v2
5252
with:
5353
DOCKER_IMAGE: ghcr.io/${{ needs.workflow-setup.outputs.GITHUB_REPOSITORY_NAME }}/node-build:${{ needs.workflow-setup.outputs.UBUNTU_VERSION }}
5454
UBUNTU_VERSION: ${{ needs.workflow-setup.outputs.UBUNTU_VERSION }}
@@ -68,7 +68,7 @@ jobs:
6868
name: Publish Artifacts
6969
needs: [workflow-setup, indy_node_tests]
7070
if: needs.workflow-setup.outputs.publish == 'true'
71-
uses: hyperledger/indy-shared-gha/.github/workflows/publish_artifacts.yaml@v2
71+
uses: Indicio-tech/indy-shared-gha/.github/workflows/publish_artifacts.yaml@v2
7272
with:
7373
COMPONENT: 'dev'
7474
UBUNTU_VERSION: ${{ needs.workflow-setup.outputs.UBUNTU_VERSION }}

.github/workflows/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ which only contain changes to python files. If no python file is affected it doe
55
The same applies to the [Push](Push.yaml) workflow respectively for pushes.
66

77
The [tag](tag.yaml), [releasepr](releasepr.yaml) and [publishRelease](publishRelease.yaml) workflows are used for the new [Release Workflow](../../docs/release-workflow.png).
8-
They use reuseable workflows from the [indy-shared-gha](https://github.com/hyperledger/indy-shared-gha) repository and the following workflow in this folder.
8+
They use reuseable workflows from the [indy-shared-gha](https://github.com/Indicio-tech/indy-shared-gha) repository and the following workflow in this folder.
99

1010
+ [reuseable_test.yaml](reuseable_test.yaml)
1111
This workflow runs the tests inside the uploaded docker images.

.github/workflows/publishRelease.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ jobs:
3333
uses: actions/checkout@v4
3434
- name: get-release-info
3535
id: get-release-info
36-
uses: hyperledger/indy-shared-gha/.github/actions/get-release-info@v2
36+
uses: Indicio-tech/indy-shared-gha/.github/actions/get-release-info@v2
3737
with:
3838
versionString: "${{ github.event.head_commit.message }}"
3939
- name: workflow-setup
4040
id: workflow-setup
41-
uses: hyperledger/indy-shared-gha/.github/actions/workflow-setup@v2
41+
uses: Indicio-tech/indy-shared-gha/.github/actions/workflow-setup@v2
4242

4343
createRelease:
4444
name: Create Release
@@ -110,7 +110,7 @@ jobs:
110110
name: Publish Artifacts
111111
needs: [release-infos, createRelease]
112112
if: needs.release-infos.outputs.isVersionBump == 'true' && needs.release-infos.outputs.publish == 'true'
113-
uses: hyperledger/indy-shared-gha/.github/workflows/publish_artifacts.yaml@v2
113+
uses: Indicio-tech/indy-shared-gha/.github/workflows/publish_artifacts.yaml@v2
114114
with:
115115
COMPONENT: ${{ needs.release-infos.outputs.component }}
116116
UBUNTU_VERSION: ${{ needs.release-infos.outputs.UBUNTU_VERSION }}
@@ -123,7 +123,7 @@ jobs:
123123
convertPyVersion:
124124
name: "Convert to python version flavour"
125125
needs: [release-infos, publish_artifacts]
126-
uses: hyperledger/indy-shared-gha/.github/workflows/pyVersionConversion.yaml@v2
126+
uses: Indicio-tech/indy-shared-gha/.github/workflows/pyVersionConversion.yaml@v2
127127
with:
128128
VERSIONTAG: ${{ needs.release-infos.outputs.VERSIONTAG }}
129129

.github/workflows/releasepr.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,24 +26,24 @@ jobs:
2626
uses: actions/checkout@v4
2727
- name: get-release-info
2828
id: get-release-info
29-
uses: hyperledger/indy-shared-gha/.github/actions/get-release-info@v2
29+
uses: Indicio-tech/indy-shared-gha/.github/actions/get-release-info@v2
3030
with:
3131
versionString: "${{ github.event.pull_request.body }}"
3232
- name: workflow-setup
3333
id: workflow-setup
34-
uses: hyperledger/indy-shared-gha/.github/actions/workflow-setup@v2
34+
uses: Indicio-tech/indy-shared-gha/.github/actions/workflow-setup@v2
3535

3636
lint:
3737
name: Lint
3838
needs: [release-infos]
3939
if: needs.release-infos.outputs.isVersionBump == 'true'
40-
uses: hyperledger/indy-shared-gha/.github/workflows/lint.yaml@v2
40+
uses: Indicio-tech/indy-shared-gha/.github/workflows/lint.yaml@v2
4141

4242
build-docker-image:
4343
name: Create Builder Image
4444
needs: [release-infos, lint]
4545
if: needs.release-infos.outputs.isVersionBump == 'true'
46-
uses: hyperledger/indy-shared-gha/.github/workflows/buildimage.yaml@v2
46+
uses: Indicio-tech/indy-shared-gha/.github/workflows/buildimage.yaml@v2
4747
with:
4848
CACHE_KEY_BUILD: ${{ needs.release-infos.outputs.CACHE_KEY_BUILD }}
4949
DOCKER_IMAGE: ghcr.io/${{ needs.release-infos.outputs.GITHUB_REPOSITORY_NAME }}/node-build
@@ -53,7 +53,7 @@ jobs:
5353
name: Build Packages
5454
needs: [release-infos, build-docker-image]
5555
if: needs.release-infos.outputs.isVersionBump == 'true'
56-
uses: hyperledger/indy-shared-gha/.github/workflows/buildpackages.yaml@v2
56+
uses: Indicio-tech/indy-shared-gha/.github/workflows/buildpackages.yaml@v2
5757
with:
5858
DOCKER_IMAGE: ghcr.io/${{ needs.release-infos.outputs.GITHUB_REPOSITORY_NAME }}/node-build:${{ needs.release-infos.outputs.UBUNTU_VERSION }}
5959
UBUNTU_VERSION: ${{ needs.release-infos.outputs.UBUNTU_VERSION }}

.github/workflows/tag.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ jobs:
2121
fetch-depth: 0
2222
- name: extract branch
2323
id: get-branch
24-
uses: hyperledger/indy-shared-gha/.github/actions/branch-from-tag@v2
24+
uses: Indicio-tech/indy-shared-gha/.github/actions/branch-from-tag@v2
2525
with:
2626
tag: ${{ github.ref }}
2727
- name: get-release-info
2828
id: get-release-info
29-
uses: hyperledger/indy-shared-gha/.github/actions/get-release-info@v2
29+
uses: Indicio-tech/indy-shared-gha/.github/actions/get-release-info@v2
3030
with:
3131
versionString: "${{ github.ref }}"
3232

0 commit comments

Comments
 (0)