Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update kinsondigital/infrastructure action to v13.6.3 #147

Merged
merged 2 commits into from
Jan 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/add-new-issue-to-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
add_new_issue_to_project:
name: Add New Issue
needs: get_item_number
uses: KinsonDigital/Infrastructure/.github/workflows/add-item-to-project.yml@v13.5.0
uses: KinsonDigital/Infrastructure/.github/workflows/add-item-to-project.yml@v13.6.3
with:
org-name: "${{ vars.ORGANIZATION_NAME }}"
org-project-name: "${{ vars.ORG_PROJECT_NAME }}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-status-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
build_branch_validator:
name: Build ${{ vars.PROJECT_NAME }} Project
needs: get_sdk_version
uses: KinsonDigital/Infrastructure/.github/workflows/build-csharp-project.yml@v13.5.0
uses: KinsonDigital/Infrastructure/.github/workflows/build-csharp-project.yml@v13.6.3
with:
project-name: "${{ vars.PROJECT_NAME }}"
build-config: Debug
Expand All @@ -42,7 +42,7 @@ jobs:
build_branch_validator_shared:
name: Build ${{ vars.PROJECT_NAME }}Shared Project
needs: get_sdk_version
uses: KinsonDigital/Infrastructure/.github/workflows/build-csharp-project.yml@v13.5.0
uses: KinsonDigital/Infrastructure/.github/workflows/build-csharp-project.yml@v13.6.3
with:
project-name: "${{ vars.PROJECT_NAME }}Shared"
build-config: Debug
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
prepare_release:
name: Prepare ${{ inputs.release-type }} Release Of ${{ vars.PROJECT_NAME }}
needs: print_validate_workflow
uses: KinsonDigital/Infrastructure/.github/workflows/prepare-release.yml@v13.5.0
uses: KinsonDigital/Infrastructure/.github/workflows/prepare-release.yml@v13.6.3
with:
project-name: ${{ vars.PROJECT_NAME }}
release-type: ${{ inputs.release-type }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
perform_release:
name: Performing ${{ inputs.release-type }} Release of ${{ vars.PROJECT_NAME }} (${{ inputs.release-type == 'Production' && 'Release' || 'Debug' }})
needs: determine_release_notes_path
uses: KinsonDigital/Infrastructure/.github/workflows/dotnet-action-release.yml@v13.5.0
uses: KinsonDigital/Infrastructure/.github/workflows/dotnet-action-release.yml@v13.6.3
with:
project-name: "${{ vars.PROJECT_NAME }}"
release-type: "${{ inputs.release-type }}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sync-pr-to-issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
if: |
github.event_name == 'pull_request_target' &&
!startsWith(github.head_ref, 'renovate/')
uses: KinsonDigital/Infrastructure/.github/workflows/initial-manual-sync.yml@v13.5.0
uses: KinsonDigital/Infrastructure/.github/workflows/initial-manual-sync.yml@v13.6.3
with:
issue-or-pr-number: ${{ github.event.pull_request.number }}
sync-type: initial
Expand All @@ -35,7 +35,7 @@ jobs:
github.event_name == 'issue_comment' &&
github.event.issue.pull_request && github.event.issue.pull_request.url != null &&
contains(github.event.comment.body, '[run-sync]')
uses: KinsonDigital/Infrastructure/.github/workflows/initial-manual-sync.yml@v13.5.0
uses: KinsonDigital/Infrastructure/.github/workflows/initial-manual-sync.yml@v13.6.3
with:
issue-or-pr-number: ${{ github.event.issue.number }}
sync-type: manual
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/unit-test-status-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
run_branch_validator_tests:
name: Run ${{ vars.PROJECT_NAME }} Tests
needs: get_sdk_version
uses: KinsonDigital/Infrastructure/.github/workflows/run-csharp-tests.yml@v13.5.0
uses: KinsonDigital/Infrastructure/.github/workflows/run-csharp-tests.yml@v13.6.3
with:
project-name: "${{ vars.PROJECT_NAME }}Tests"
build-config: Debug
Expand All @@ -42,7 +42,7 @@ jobs:
run_branch_validation_shared_tests:
name: Run ${{ vars.PROJECT_NAME }}Shared Tests
needs: get_sdk_version
uses: KinsonDigital/Infrastructure/.github/workflows/run-csharp-tests.yml@v13.5.0
uses: KinsonDigital/Infrastructure/.github/workflows/run-csharp-tests.yml@v13.6.3
with:
project-name: "${{ vars.PROJECT_NAME }}SharedTests"
build-config: Debug
Expand All @@ -56,7 +56,7 @@ jobs:
run_script_generator_tests:
name: Run ScriptGenerator Tests
needs: get_sdk_version
uses: KinsonDigital/Infrastructure/.github/workflows/run-csharp-tests.yml@v13.5.0
uses: KinsonDigital/Infrastructure/.github/workflows/run-csharp-tests.yml@v13.6.3
with:
project-name: "ScriptGeneratorTests"
build-config: Debug
Expand All @@ -73,7 +73,7 @@ jobs:
run_branch_validation_shared_tests,
run_script_generator_tests,
get_sdk_version]
uses: KinsonDigital/Infrastructure/.github/workflows/run-csharp-tests.yml@v13.5.0
uses: KinsonDigital/Infrastructure/.github/workflows/run-csharp-tests.yml@v13.6.3
with:
project-name: "${{ vars.PROJECT_NAME }}IntegrationTests"
build-config: Debug
Expand Down
Loading