Skip to content

Commit 907afef

Browse files
committed
fix: update self-references from v4 to v5
1 parent ca3a7d7 commit 907afef

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/github-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on:
2020

2121
jobs:
2222
call-check-file-action:
23-
uses: keyfactor/actions/.github/workflows/check-todos-license-headers.yml@v4
23+
uses: keyfactor/actions/.github/workflows/check-todos-license-headers.yml@v5
2424

2525
create-github-release-workflow:
2626
runs-on: ubuntu-latest

.github/workflows/starter.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ on:
4848

4949
jobs:
5050
call-assign-from-json-workflow:
51-
uses: Keyfactor/actions/.github/workflows/assign-env-from-json.yml@v4
51+
uses: Keyfactor/actions/.github/workflows/assign-env-from-json.yml@v5
5252

5353
call-get-primary-language:
5454
outputs:
@@ -101,12 +101,12 @@ jobs:
101101
echo "platform_matrix=`cat integration-manifest.json | jq '.platform_matrix'`" | tee -a $GITHUB_OUTPUT | tee -a $GITHUB_STEP_SUMMARY
102102

103103
call-create-github-release-workflow:
104-
uses: Keyfactor/actions/.github/workflows/github-release.yml@v4
104+
uses: Keyfactor/actions/.github/workflows/github-release.yml@v5
105105

106106
call-dotnet-build-and-release-workflow:
107107
needs: [ call-get-primary-language, call-assign-from-json-workflow, call-create-github-release-workflow ]
108108
if: needs.call-get-primary-language.outputs.primary_language == 'C#'
109-
uses: keyfactor/actions/.github/workflows/dotnet-build-and-release.yml@dotnet10-support
109+
uses: keyfactor/actions/.github/workflows/dotnet-build-and-release.yml@v5
110110
with:
111111
release_version: ${{ needs.call-create-github-release-workflow.outputs.release_version }}
112112
release_url: ${{ needs.call-create-github-release-workflow.outputs.release_url }}
@@ -119,7 +119,7 @@ jobs:
119119
call-go-build-and-release-workflow:
120120
needs: [ call-get-primary-language, call-assign-from-json-workflow, call-create-github-release-workflow,call-goreleaser-exists ]
121121
if: needs.call-get-primary-language.outputs.primary_language == 'Go' && needs.call-goreleaser-exists.outputs.goreleaser-exists == 'true'
122-
uses: keyfactor/actions/.github/workflows/go-build-and-release.yml@v4
122+
uses: keyfactor/actions/.github/workflows/go-build-and-release.yml@v5
123123
with:
124124
release_version: ${{ needs.call-create-github-release-workflow.outputs.release_version }}
125125
secrets:
@@ -131,26 +131,26 @@ jobs:
131131
permissions:
132132
contents: write # Explicitly grant write permission
133133
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
134-
uses: Keyfactor/actions/.github/workflows/generate-readme.yml@feature/dotnet-doctool
134+
uses: Keyfactor/actions/.github/workflows/generate-readme.yml@v5
135135
secrets:
136136
token: ${{ secrets.token }}
137137

138138
call-update-catalog-workflow:
139139
needs: call-assign-from-json-workflow
140140
if: needs.call-assign-from-json-workflow.outputs.update_catalog == 'true' && github.ref_name == 'main' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch')
141-
uses: Keyfactor/actions/.github/workflows/update-catalog.yml@v4
141+
uses: Keyfactor/actions/.github/workflows/update-catalog.yml@v5
142142
secrets:
143143
token: ${{ secrets.token }}
144144

145145
call-repository-configuration-workflow:
146146
if: github.event_name == 'create' && startsWith(github.ref, 'refs/heads/release-')
147-
uses: Keyfactor/actions/.github/workflows/kf-configure-repo.yml@v4
147+
uses: Keyfactor/actions/.github/workflows/kf-configure-repo.yml@v5
148148
secrets:
149149
token: ${{ secrets.token }}
150150

151151
# call-polaris-scan-workflow:
152152
# if: github.event_name == 'pull_request' && (startsWith(github.base_ref, 'release-') || github.base_ref == 'main')
153-
# uses: Keyfactor/actions/.github/workflows/kf-polaris-scan.yml@v4
153+
# uses: Keyfactor/actions/.github/workflows/kf-polaris-scan.yml@v5
154154
# with:
155155
# scan_branch: ${{ github.event.pull_request.head.ref }}
156156
# secrets:
@@ -159,7 +159,7 @@ jobs:
159159
call-post-release-workflow:
160160
needs: [ call-assign-from-json-workflow, call-create-github-release-workflow ]
161161
if: needs.call-create-github-release-workflow.outputs.IS_FULL_RELEASE == 'True'
162-
uses: Keyfactor/actions/.github/workflows/kf-post-release.yml@v4
162+
uses: Keyfactor/actions/.github/workflows/kf-post-release.yml@v5
163163
secrets:
164164
token: ${{ secrets.token }}
165165
with:

0 commit comments

Comments
 (0)