Skip to content

Commit 7a3483e

Browse files
chore(deps): update kinsondigital/infrastructure action to v13.6.3 (#147)
| datasource | package | from | to | | ----------- | ---------------------------- | ------- | ------- | | github-tags | KinsonDigital/Infrastructure | v13.5.0 | v13.6.3 | Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Kristen Wilkinson <[email protected]>
1 parent cb6daa5 commit 7a3483e

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/workflows/add-new-issue-to-project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
add_new_issue_to_project:
2929
name: Add New Issue
3030
needs: get_item_number
31-
uses: KinsonDigital/Infrastructure/.github/workflows/add-item-to-project.yml@v13.5.0
31+
uses: KinsonDigital/Infrastructure/.github/workflows/add-item-to-project.yml@v13.6.3
3232
with:
3333
org-name: "${{ vars.ORGANIZATION_NAME }}"
3434
org-project-name: "${{ vars.ORG_PROJECT_NAME }}"

.github/workflows/build-status-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
build_branch_validator:
2929
name: Build ${{ vars.PROJECT_NAME }} Project
3030
needs: get_sdk_version
31-
uses: KinsonDigital/Infrastructure/.github/workflows/build-csharp-project.yml@v13.5.0
31+
uses: KinsonDigital/Infrastructure/.github/workflows/build-csharp-project.yml@v13.6.3
3232
with:
3333
project-name: "${{ vars.PROJECT_NAME }}"
3434
build-config: Debug
@@ -42,7 +42,7 @@ jobs:
4242
build_branch_validator_shared:
4343
name: Build ${{ vars.PROJECT_NAME }}Shared Project
4444
needs: get_sdk_version
45-
uses: KinsonDigital/Infrastructure/.github/workflows/build-csharp-project.yml@v13.5.0
45+
uses: KinsonDigital/Infrastructure/.github/workflows/build-csharp-project.yml@v13.6.3
4646
with:
4747
project-name: "${{ vars.PROJECT_NAME }}Shared"
4848
build-config: Debug

.github/workflows/prepare-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
prepare_release:
7272
name: Prepare ${{ inputs.release-type }} Release Of ${{ vars.PROJECT_NAME }}
7373
needs: print_validate_workflow
74-
uses: KinsonDigital/Infrastructure/.github/workflows/prepare-release.yml@v13.5.0
74+
uses: KinsonDigital/Infrastructure/.github/workflows/prepare-release.yml@v13.6.3
7575
with:
7676
project-name: ${{ vars.PROJECT_NAME }}
7777
release-type: ${{ inputs.release-type }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
perform_release:
4646
name: Performing ${{ inputs.release-type }} Release of ${{ vars.PROJECT_NAME }} (${{ inputs.release-type == 'Production' && 'Release' || 'Debug' }})
4747
needs: determine_release_notes_path
48-
uses: KinsonDigital/Infrastructure/.github/workflows/dotnet-action-release.yml@v13.5.0
48+
uses: KinsonDigital/Infrastructure/.github/workflows/dotnet-action-release.yml@v13.6.3
4949
with:
5050
project-name: "${{ vars.PROJECT_NAME }}"
5151
release-type: "${{ inputs.release-type }}"

.github/workflows/sync-pr-to-issue.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
if: |
2020
github.event_name == 'pull_request_target' &&
2121
!startsWith(github.head_ref, 'renovate/')
22-
uses: KinsonDigital/Infrastructure/.github/workflows/initial-manual-sync.yml@v13.5.0
22+
uses: KinsonDigital/Infrastructure/.github/workflows/initial-manual-sync.yml@v13.6.3
2323
with:
2424
issue-or-pr-number: ${{ github.event.pull_request.number }}
2525
sync-type: initial
@@ -35,7 +35,7 @@ jobs:
3535
github.event_name == 'issue_comment' &&
3636
github.event.issue.pull_request && github.event.issue.pull_request.url != null &&
3737
contains(github.event.comment.body, '[run-sync]')
38-
uses: KinsonDigital/Infrastructure/.github/workflows/initial-manual-sync.yml@v13.5.0
38+
uses: KinsonDigital/Infrastructure/.github/workflows/initial-manual-sync.yml@v13.6.3
3939
with:
4040
issue-or-pr-number: ${{ github.event.issue.number }}
4141
sync-type: manual

.github/workflows/unit-test-status-check.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run_branch_validator_tests:
2929
name: Run ${{ vars.PROJECT_NAME }} Tests
3030
needs: get_sdk_version
31-
uses: KinsonDigital/Infrastructure/.github/workflows/run-csharp-tests.yml@v13.5.0
31+
uses: KinsonDigital/Infrastructure/.github/workflows/run-csharp-tests.yml@v13.6.3
3232
with:
3333
project-name: "${{ vars.PROJECT_NAME }}Tests"
3434
build-config: Debug
@@ -42,7 +42,7 @@ jobs:
4242
run_branch_validation_shared_tests:
4343
name: Run ${{ vars.PROJECT_NAME }}Shared Tests
4444
needs: get_sdk_version
45-
uses: KinsonDigital/Infrastructure/.github/workflows/run-csharp-tests.yml@v13.5.0
45+
uses: KinsonDigital/Infrastructure/.github/workflows/run-csharp-tests.yml@v13.6.3
4646
with:
4747
project-name: "${{ vars.PROJECT_NAME }}SharedTests"
4848
build-config: Debug
@@ -56,7 +56,7 @@ jobs:
5656
run_script_generator_tests:
5757
name: Run ScriptGenerator Tests
5858
needs: get_sdk_version
59-
uses: KinsonDigital/Infrastructure/.github/workflows/run-csharp-tests.yml@v13.5.0
59+
uses: KinsonDigital/Infrastructure/.github/workflows/run-csharp-tests.yml@v13.6.3
6060
with:
6161
project-name: "ScriptGeneratorTests"
6262
build-config: Debug
@@ -73,7 +73,7 @@ jobs:
7373
run_branch_validation_shared_tests,
7474
run_script_generator_tests,
7575
get_sdk_version]
76-
uses: KinsonDigital/Infrastructure/.github/workflows/run-csharp-tests.yml@v13.5.0
76+
uses: KinsonDigital/Infrastructure/.github/workflows/run-csharp-tests.yml@v13.6.3
7777
with:
7878
project-name: "${{ vars.PROJECT_NAME }}IntegrationTests"
7979
build-config: Debug

0 commit comments

Comments
 (0)