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 v14 #39

Open
wants to merge 1 commit into
base: preview
Choose a base branch
from
Open
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-item-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.6.3
uses: KinsonDigital/Infrastructure/.github/workflows/add-item-to-project.yml@v14.0.0
with:
org-name: "${{ vars.ORGANIZATION_NAME }}"
org-project-name: "${{ vars.ORG_PROJECT_NAME }}"
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build-misc-projects-status-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
jobs:
build_measure_text_perf_project:
name: Build Measure Text Perf Project
uses: KinsonDigital/Infrastructure/.github/workflows/build-csharp-project.yml@v13.6.3
uses: KinsonDigital/Infrastructure/.github/workflows/build-csharp-project.yml@v14.0.0
with:
project-name: "MeasureTextPerf"
build-config: Debug
Expand All @@ -28,7 +28,7 @@ jobs:

build_keyboard_perf_project:
name: Build Keyboard Perf Project
uses: KinsonDigital/Infrastructure/.github/workflows/build-csharp-project.yml@v13.6.3
uses: KinsonDigital/Infrastructure/.github/workflows/build-csharp-project.yml@v14.0.0
with:
project-name: "KeyboardPerf"
build-config: Debug
Expand All @@ -41,7 +41,7 @@ jobs:

build_mouse_perf_project:
name: Build Mouse Perf Project
uses: KinsonDigital/Infrastructure/.github/workflows/build-csharp-project.yml@v13.6.3
uses: KinsonDigital/Infrastructure/.github/workflows/build-csharp-project.yml@v14.0.0
with:
project-name: "MousePerf"
build-config: Debug
Expand All @@ -54,7 +54,7 @@ jobs:

build_playground_project:
name: Build Playground App Project
uses: KinsonDigital/Infrastructure/.github/workflows/build-csharp-project.yml@v13.6.3
uses: KinsonDigital/Infrastructure/.github/workflows/build-csharp-project.yml@v14.0.0
with:
project-name: "PlaygroundApp"
build-config: Debug
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-status-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
jobs:
build_status_check:
name: ${{ vars.PROJECT_NAME }} Build Status Check
uses: KinsonDigital/Infrastructure/.github/workflows/build-csharp-project.yml@v13.6.3
uses: KinsonDigital/Infrastructure/.github/workflows/build-csharp-project.yml@v14.0.0
with:
project-name: "${{ vars.PROJECT_NAME }}"
build-config: Debug
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
run_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-lib-release.yml@v13.6.3
uses: KinsonDigital/Infrastructure/.github/workflows/dotnet-lib-release.yml@v14.0.0
with:
project-name: "${{ vars.PROJECT_NAME}}"
release-type: "${{ inputs.release-type }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sdk-status-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
jobs:
sdk_status_check:
name: ${{ vars.PROJECT_NAME }} SDK Status Check
uses: KinsonDigital/Infrastructure/.github/workflows/validate-sdk-setup.yml@v13.6.3
uses: KinsonDigital/Infrastructure/.github/workflows/validate-sdk-setup.yml@v14.0.0
with:
repo-name: "${{ vars.PROJECT_NAME }}"
checkout-repository: ${{ github.event.pull_request.head.repo.full_name }}
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 @@ -20,7 +20,7 @@ jobs:
github.event_name == 'pull_request_target' &&
!startsWith(github.head_ref, 'renovate/') && !startsWith(github.head_ref, 'dependabot/') &&
github.head_ref != 'prev-release' && github.head_ref != 'prod-release'
uses: KinsonDigital/Infrastructure/.github/workflows/initial-manual-sync.yml@v13.6.3
uses: KinsonDigital/Infrastructure/.github/workflows/initial-manual-sync.yml@v14.0.0
with:
issue-or-pr-number: ${{ github.event.pull_request.number }}
sync-type: initial
Expand All @@ -37,7 +37,7 @@ jobs:
github.head_ref != 'prev-release' && github.head_ref != 'prod-release' &&
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.6.3
uses: KinsonDigital/Infrastructure/.github/workflows/initial-manual-sync.yml@v14.0.0
with:
issue-or-pr-number: ${{ github.event.issue.number }}
sync-type: manual
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/unit-test-status-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
# 'test' related project at least builds.
build_velaptor_testing:
name: Build ${{ vars.PROJECT_NAME }} Testing App
uses: KinsonDigital/Infrastructure/.github/workflows/build-csharp-project.yml@v13.6.3
uses: KinsonDigital/Infrastructure/.github/workflows/build-csharp-project.yml@v14.0.0
with:
project-name: "${{ vars.PROJECT_NAME }}Testing"
build-config: Debug
Expand All @@ -33,7 +33,7 @@ jobs:
# 'test' related project at least builds.
build_avalonia_testing:
name: Build Avalonia Testing App
uses: KinsonDigital/Infrastructure/.github/workflows/build-csharp-project.yml@v13.6.3
uses: KinsonDigital/Infrastructure/.github/workflows/build-csharp-project.yml@v14.0.0
with:
project-name: "AvaloniaTesting"
build-config: Debug
Expand All @@ -46,7 +46,7 @@ jobs:

run_tests:
name: Run ${{ vars.PROJECT_NAME }} Tests
uses: KinsonDigital/Infrastructure/.github/workflows/run-csharp-tests.yml@v13.6.3
uses: KinsonDigital/Infrastructure/.github/workflows/run-csharp-tests.yml@v14.0.0
with:
project-name: "${{ vars.PROJECT_NAME }}Tests"
build-config: Debug
Expand Down
Loading