Skip to content

Commit b3ef494

Browse files
committed
Pin workflows to a specific version
Pin the workflows to a specific version to ensure stability and consistency across runs.
1 parent edbe114 commit b3ef494

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"

.github/workflows/pull_request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
2626
tests:
2727
name: Test
28-
uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main
28+
uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@0.0.2
2929
with:
3030
windows_exclude_swift_versions: "[{\"swift_version\": \"5.9\"}]"
3131
enable_macos_checks: true
@@ -58,6 +58,6 @@ jobs:
5858

5959
soundness:
6060
name: Soundness
61-
uses: swiftlang/github-workflows/.github/workflows/soundness.yml@main
61+
uses: swiftlang/github-workflows/.github/workflows/soundness.yml@0.0.2
6262
with:
6363
shell_check_enabled: false # bug: https://github.com/apple/swift-argument-parser/issues/703

0 commit comments

Comments
 (0)