Skip to content

Commit 9167e33

Browse files
Bump the all-actions group with 4 updates
--- updated-dependencies: - dependency-name: hyperledger/indy-shared-gha dependency-version: '2' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: dawidd6/action-download-artifact dependency-version: '11' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: ossf/scorecard-action dependency-version: 2.4.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-actions - dependency-name: peter-evans/create-pull-request dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 773c951 commit 9167e33

File tree

6 files changed

+25
-25
lines changed

6 files changed

+25
-25
lines changed

.github/workflows/PR.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
uses: actions/checkout@v4
2929
- name: setup
3030
id: setup
31-
uses: hyperledger/indy-shared-gha/.github/actions/workflow-setup@v1
31+
uses: hyperledger/indy-shared-gha/.github/actions/workflow-setup@v2
3232
- name: testsNeeded
3333
id: testsNeeded
3434
uses: dorny/paths-filter@v3
@@ -44,12 +44,12 @@ jobs:
4444
name: Lint
4545
needs: [workflow-setup]
4646
if: ${{ needs.workflow-setup.outputs.testsNeeded == 'true' }}
47-
uses: hyperledger/indy-shared-gha/.github/workflows/lint.yaml@v1
47+
uses: hyperledger/indy-shared-gha/.github/workflows/lint.yaml@v2
4848

4949
build-docker-image:
5050
name: Create Builder Image
5151
needs: [workflow-setup, lint]
52-
uses: hyperledger/indy-shared-gha/.github/workflows/buildimage.yaml@v1
52+
uses: hyperledger/indy-shared-gha/.github/workflows/buildimage.yaml@v2
5353
with:
5454
CACHE_KEY_BUILD: ${{ needs.workflow-setup.outputs.CACHE_KEY_BUILD }}
5555
DOCKER_IMAGE: ghcr.io/${{ needs.workflow-setup.outputs.GITHUB_REPOSITORY_NAME }}/plenum-build
@@ -58,7 +58,7 @@ jobs:
5858
build_packages:
5959
name: Build Packages
6060
needs: [workflow-setup, build-docker-image]
61-
uses: hyperledger/indy-shared-gha/.github/workflows/buildpackages.yaml@v1
61+
uses: hyperledger/indy-shared-gha/.github/workflows/buildpackages.yaml@v2
6262
with:
6363
DOCKER_IMAGE: ghcr.io/${{ needs.workflow-setup.outputs.GITHUB_REPOSITORY_NAME }}/plenum-build:${{ needs.workflow-setup.outputs.UBUNTU_VERSION }}
6464
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
@@ -28,16 +28,16 @@ jobs:
2828
uses: actions/checkout@v4
2929
- name: setup
3030
id: setup
31-
uses: hyperledger/indy-shared-gha/.github/actions/workflow-setup@v1
31+
uses: hyperledger/indy-shared-gha/.github/actions/workflow-setup@v2
3232

3333
lint:
3434
name: Lint
35-
uses: hyperledger/indy-shared-gha/.github/workflows/lint.yaml@v1
35+
uses: hyperledger/indy-shared-gha/.github/workflows/lint.yaml@v2
3636

3737
build-docker-image:
3838
name: Create Builder Image
3939
needs: [workflow-setup, lint]
40-
uses: hyperledger/indy-shared-gha/.github/workflows/buildimage.yaml@v1
40+
uses: hyperledger/indy-shared-gha/.github/workflows/buildimage.yaml@v2
4141
with:
4242
CACHE_KEY_BUILD: ${{ needs.workflow-setup.outputs.CACHE_KEY_BUILD }}
4343
DOCKER_IMAGE: ghcr.io/${{ needs.workflow-setup.outputs.GITHUB_REPOSITORY_NAME }}/plenum-build
@@ -46,7 +46,7 @@ jobs:
4646
build_packages:
4747
name: Build Packages
4848
needs: [workflow-setup, build-docker-image]
49-
uses: hyperledger/indy-shared-gha/.github/workflows/buildpackages.yaml@v1
49+
uses: hyperledger/indy-shared-gha/.github/workflows/buildpackages.yaml@v2
5050
with:
5151
DOCKER_IMAGE: ghcr.io/${{ needs.workflow-setup.outputs.GITHUB_REPOSITORY_NAME }}/plenum-build:${{ needs.workflow-setup.outputs.UBUNTU_VERSION }}
5252
UBUNTU_VERSION: ${{ needs.workflow-setup.outputs.UBUNTU_VERSION }}
@@ -66,7 +66,7 @@ jobs:
6666
name: Publish Artifacts
6767
needs: [workflow-setup, plenum_tests]
6868
if: needs.workflow-setup.outputs.publish == 'true'
69-
uses: hyperledger/indy-shared-gha/.github/workflows/publish_artifacts.yaml@v1
69+
uses: hyperledger/indy-shared-gha/.github/workflows/publish_artifacts.yaml@v2
7070
with:
7171
COMPONENT: 'dev'
7272
UBUNTU_VERSION: ${{ needs.workflow-setup.outputs.UBUNTU_VERSION }}

.github/workflows/publishRelease.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ jobs:
3434
uses: actions/checkout@v4
3535
- name: get-release-info
3636
id: get-release-info
37-
uses: hyperledger/indy-shared-gha/.github/actions/get-release-info@v1
37+
uses: hyperledger/indy-shared-gha/.github/actions/get-release-info@v2
3838
with:
3939
versionString: "${{ github.event.head_commit.message }}"
4040
- name: workflow-setup
4141
id: workflow-setup
42-
uses: hyperledger/indy-shared-gha/.github/actions/workflow-setup@v1
42+
uses: hyperledger/indy-shared-gha/.github/actions/workflow-setup@v2
4343

4444
createRelease:
4545
name: Create Release
@@ -51,23 +51,23 @@ jobs:
5151
uses: actions/checkout@v4
5252

5353
- name: Download Plenum deb Artifacts from Github Action Artifacts
54-
uses: dawidd6/action-download-artifact@v6
54+
uses: dawidd6/action-download-artifact@v11
5555
with:
5656
github_token: ${{ secrets.GITHUB_TOKEN }}
5757
workflow: releasepr.yaml
5858
workflow_conclusion: success
5959
name: plenum-deb
6060
path: artifacts/plenum-deb
6161
- name: Download Plenum python Artifacts from Github Action Artifacts
62-
uses: dawidd6/action-download-artifact@v6
62+
uses: dawidd6/action-download-artifact@v11
6363
with:
6464
github_token: ${{ secrets.GITHUB_TOKEN }}
6565
workflow: releasepr.yaml
6666
workflow_conclusion: success
6767
name: plenum-python
6868
path: artifacts/plenum-python
6969
- name: Download Plenum third party dependency Artifacts from Github Action Artifacts
70-
uses: dawidd6/action-download-artifact@v6
70+
uses: dawidd6/action-download-artifact@v11
7171
with:
7272
github_token: ${{ secrets.GITHUB_TOKEN }}
7373
workflow: releasepr.yaml
@@ -111,7 +111,7 @@ jobs:
111111
name: Publish Artifacts
112112
needs: [release-infos, createRelease]
113113
if: needs.release-infos.outputs.isVersionBump == 'true' && needs.release-infos.outputs.publish == 'true'
114-
uses: hyperledger/indy-shared-gha/.github/workflows/publish_artifacts.yaml@v1
114+
uses: hyperledger/indy-shared-gha/.github/workflows/publish_artifacts.yaml@v2
115115
with:
116116
COMPONENT: ${{ needs.release-infos.outputs.component }}
117117
UBUNTU_VERSION: ${{ needs.release-infos.outputs.UBUNTU_VERSION }}
@@ -124,7 +124,7 @@ jobs:
124124
convertPyVersion:
125125
name: "Convert to python version flavour"
126126
needs: [release-infos, publish_artifacts]
127-
uses: hyperledger/indy-shared-gha/.github/workflows/pyVersionConversion.yaml@v1
127+
uses: hyperledger/indy-shared-gha/.github/workflows/pyVersionConversion.yaml@v2
128128
with:
129129
VERSIONTAG: ${{ needs.release-infos.outputs.VERSIONTAG }}
130130

.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@v1
29+
uses: hyperledger/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@v1
34+
uses: hyperledger/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@v1
40+
uses: hyperledger/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@v1
46+
uses: hyperledger/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 }}/plenum-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@v1
56+
uses: hyperledger/indy-shared-gha/.github/workflows/buildpackages.yaml@v2
5757
with:
5858
DOCKER_IMAGE: ghcr.io/${{ needs.release-infos.outputs.GITHUB_REPOSITORY_NAME }}/plenum-build:${{ needs.release-infos.outputs.UBUNTU_VERSION }}
5959
UBUNTU_VERSION: ${{ needs.release-infos.outputs.UBUNTU_VERSION }}

.github/workflows/scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
persist-credentials: false
4141

4242
- name: "Run analysis"
43-
uses: ossf/[email protected].0 # was v2.3.1 - 0864cf19026789058feabb7e87baa5f140aac736
43+
uses: ossf/[email protected].2 # was v2.3.1 - 0864cf19026789058feabb7e87baa5f140aac736
4444
with:
4545
results_file: results.sarif
4646
results_format: sarif

.github/workflows/tag.yaml

Lines changed: 3 additions & 3 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@v1
24+
uses: hyperledger/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@v1
29+
uses: hyperledger/indy-shared-gha/.github/actions/get-release-info@v2
3030
with:
3131
versionString: "${{ github.ref }}"
3232

@@ -53,7 +53,7 @@ jobs:
5353
./bump_version.sh ${{ needs.taginfos.outputs.VERSION }}
5454
5555
- name: Create Pull Request
56-
uses: peter-evans/create-pull-request@v6
56+
uses: peter-evans/create-pull-request@v7
5757
with:
5858
author: ${{ github.actor }} <${{ github.event.pusher.email }}>
5959
committer: ${{ github.actor }} <${{ github.event.pusher.email }}>

0 commit comments

Comments
 (0)