From b3ef49454dca491ac6b73f4398837517d8c0bc8c Mon Sep 17 00:00:00 2001 From: Bassam Khouri Date: Thu, 11 Dec 2025 20:05:42 -0500 Subject: [PATCH] Pin workflows to a specific version Pin the workflows to a specific version to ensure stability and consistency across runs. --- .github/dependabot.yml | 6 ++++++ .github/workflows/pull_request.yml | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..5ace4600 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index d82b9475..1a4f888e 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -25,7 +25,7 @@ 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: windows_exclude_swift_versions: "[{\"swift_version\": \"5.9\"}]" enable_macos_checks: true @@ -58,6 +58,6 @@ jobs: soundness: name: Soundness - uses: swiftlang/github-workflows/.github/workflows/soundness.yml@main + uses: swiftlang/github-workflows/.github/workflows/soundness.yml@0.0.2 with: shell_check_enabled: false # bug: https://github.com/apple/swift-argument-parser/issues/703