diff --git a/.github/workflows/build-and-test-windows.yml b/.github/workflows/build-and-test-windows.yml index 1ea978690..59bc8ae38 100644 --- a/.github/workflows/build-and-test-windows.yml +++ b/.github/workflows/build-and-test-windows.yml @@ -22,7 +22,7 @@ jobs: timeout-minutes: 2 steps: - name: Remove Run Windows Build Label - uses: Lombiq/GitHub-Actions/.github/actions/add-remove-label@dev + uses: Lombiq/GitHub-Actions/.github/actions/add-remove-label@issue/OSOE-1187 with: # The token is necessary to be able to remove the label even if the workflow is triggered by a pull request # coming from a fork. @@ -36,7 +36,7 @@ jobs: github.event.label.name == 'run-windows-build' || (github.event.review.state == 'APPROVED' && contains(github.event.pull_request.labels.*.name, 'requires-windows-build'))) name: Build and Test Windows - root solution (larger runners) - uses: Lombiq/GitHub-Actions/.github/workflows/build-and-test-orchard-core.yml@dev + uses: Lombiq/GitHub-Actions/.github/workflows/build-and-test-orchard-core.yml@issue/OSOE-1187 with: parent-job-name: root-solution-larger-runners machine-types: '["warp-windows-2025-x64-8x"]' @@ -60,7 +60,7 @@ jobs: build-and-test-standard-runners: if: github.ref_name == github.event.repository.default_branch name: Build and Test Windows - root solution (standard runners) - uses: Lombiq/GitHub-Actions/.github/workflows/build-and-test-orchard-core.yml@dev + uses: Lombiq/GitHub-Actions/.github/workflows/build-and-test-orchard-core.yml@issue/OSOE-1187 with: parent-job-name: root-solution-standard-runners # Since dev builds are not awaited by anyone, they can run on the slower free runners. @@ -86,7 +86,7 @@ jobs: github.event.label.name == 'run-windows-build' || (github.event.review.state == 'APPROVED' && contains(github.event.pull_request.labels.*.name, 'requires-windows-build')) name: Build and Test Windows - NuGetTest solution - uses: Lombiq/GitHub-Actions/.github/workflows/build-and-test-orchard-core.yml@dev + uses: Lombiq/GitHub-Actions/.github/workflows/build-and-test-orchard-core.yml@issue/OSOE-1187 with: parent-job-name: nuget-solution machine-types: '["windows-2025"]' @@ -150,7 +150,7 @@ jobs: name: Post Pull Request Checks Automation needs: [build-and-test-larger-runners, build-and-test-nuget-test, powershell-static-code-analysis] if: github.event.pull_request != '' - uses: Lombiq/GitHub-Actions/.github/workflows/post-pull-request-checks-automation.yml@dev + uses: Lombiq/GitHub-Actions/.github/workflows/post-pull-request-checks-automation.yml@issue/OSOE-1187 secrets: JIRA_BASE_URL: ${{ secrets.DEFAULT_JIRA_BASE_URL }} JIRA_USER_EMAIL: ${{ secrets.DEFAULT_JIRA_USER_EMAIL }} @@ -164,7 +164,7 @@ jobs: needs: [build-and-test-larger-runners, build-and-test-nuget-test, asset-lint, powershell-static-code-analysis] steps: - name: Remove Windows Build Warning Label - uses: Lombiq/GitHub-Actions/.github/actions/add-remove-label@dev + uses: Lombiq/GitHub-Actions/.github/actions/add-remove-label@issue/OSOE-1187 with: # The token is necessary to be able to remove the label even if the workflow is triggered by a pull request # coming from a fork. diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index cea51a680..5ade81f98 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -11,7 +11,7 @@ jobs: build-and-test-larger-runners: if: github.ref_name != github.event.repository.default_branch name: Build and Test - root solution (larger runners) - uses: Lombiq/GitHub-Actions/.github/workflows/build-and-test-orchard-core.yml@dev + uses: Lombiq/GitHub-Actions/.github/workflows/build-and-test-orchard-core.yml@issue/OSOE-1187 with: parent-job-name: root-solution-larger-runners machine-types: '["warp-ubuntu-2404-x64-4x"]' @@ -30,7 +30,7 @@ jobs: build-and-test-standard-runners: if: github.ref_name == github.event.repository.default_branch name: Build and Test - root solution (standard runners) - uses: Lombiq/GitHub-Actions/.github/workflows/build-and-test-orchard-core.yml@dev + uses: Lombiq/GitHub-Actions/.github/workflows/build-and-test-orchard-core.yml@issue/OSOE-1187 with: # Since dev builds are not awaited by anyone, they can run on the slower free runners. parent-job-name: root-solution-standard-runners @@ -46,7 +46,7 @@ jobs: build-and-test-nuget-test: name: Build and Test - NuGetTest solution - uses: Lombiq/GitHub-Actions/.github/workflows/build-and-test-orchard-core.yml@dev + uses: Lombiq/GitHub-Actions/.github/workflows/build-and-test-orchard-core.yml@issue/OSOE-1187 with: parent-job-name: nuget-solution build-directory: NuGetTest @@ -58,7 +58,7 @@ jobs: codespell: name: Codespell - uses: Lombiq/GitHub-Actions/.github/workflows/codespell.yml@dev + uses: Lombiq/GitHub-Actions/.github/workflows/codespell.yml@issue/OSOE-1187 asset-lint: name: Lint Assets @@ -94,7 +94,7 @@ jobs: yaml-linting: name: YAML Linting - uses: Lombiq/GitHub-Actions/.github/workflows/yaml-lint.yml@dev + uses: Lombiq/GitHub-Actions/.github/workflows/yaml-lint.yml@issue/OSOE-1187 with: config-file-path: tools/Lombiq.GitHub.Actions/.trunk/configs/.yamllint.yaml search-path: . @@ -103,7 +103,7 @@ jobs: name: Post Pull Request Checks Automation needs: [build-and-test-larger-runners, build-and-test-nuget-test, codespell, asset-lint, powershell-static-code-analysis] if: github.event.pull_request != '' - uses: Lombiq/GitHub-Actions/.github/workflows/post-pull-request-checks-automation.yml@dev + uses: Lombiq/GitHub-Actions/.github/workflows/post-pull-request-checks-automation.yml@issue/OSOE-1187 secrets: JIRA_BASE_URL: ${{ secrets.DEFAULT_JIRA_BASE_URL }} JIRA_USER_EMAIL: ${{ secrets.DEFAULT_JIRA_USER_EMAIL }} @@ -117,7 +117,7 @@ jobs: needs: [build-and-test-larger-runners, build-and-test-nuget-test, powershell-static-code-analysis] steps: - name: Add Windows Build Warning Label - uses: Lombiq/GitHub-Actions/.github/actions/add-remove-label@dev + uses: Lombiq/GitHub-Actions/.github/actions/add-remove-label@issue/OSOE-1187 with: # The token is necessary to be able to add the label even if the workflow is triggered by a pull request # coming from a fork. diff --git a/tools/Lombiq.GitHub.Actions b/tools/Lombiq.GitHub.Actions index cd64f20ad..e9d8ffd1e 160000 --- a/tools/Lombiq.GitHub.Actions +++ b/tools/Lombiq.GitHub.Actions @@ -1 +1 @@ -Subproject commit cd64f20ad35936cab0903233428b7faaead7c6c4 +Subproject commit e9d8ffd1ee97dd1e30f11afd3d6c29f072dc278e