From 208b1e464a722ceacf65bf9ed18b7fbe10ef255a Mon Sep 17 00:00:00 2001 From: Ben Barham Date: Wed, 10 Dec 2025 09:00:57 +1000 Subject: [PATCH] Update pull request workflow to use the tagged github-workflows Now that workflows is more stable, use the most recent tag instead of main to avoid changes to default jobs preventing merging. --- .github/workflows/pull_request.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index fa5a292067c..86f88a05101 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -16,12 +16,12 @@ concurrency: jobs: tests: name: Test - uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main + uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@0.0.2 with: enable_wasm_sdk_build: true soundness: name: Soundness - uses: swiftlang/github-workflows/.github/workflows/soundness.yml@main + uses: swiftlang/github-workflows/.github/workflows/soundness.yml@0.0.2 with: api_breakage_check_enabled: false # https://github.com/swiftlang/swift-syntax/issues/3010 docs_check_additional_arguments: "--disable-parameters-and-returns-validation"