Skip to content

Commit 463b0a0

Browse files
authored
Merge pull request #7 from simonjbeaumont/sb/fix-soundness-script-urls
2 parents b5962d9 + 847aa76 commit 463b0a0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/soundness.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
- name: Run documentation check
9494
run: |
9595
apt-get -qq update && apt-get -qq -y install curl yq
96-
curl -s https://raw.githubusercontent.com/swiftlang/github-workflows/.github/workflows/scripts/check-docs.sh | bash
96+
curl -s https://raw.githubusercontent.com/swiftlang/github-workflows/refs/heads/main/.github/workflows/scripts/check-docs.sh | bash
9797
9898
unacceptable-language-check:
9999
name: Unacceptable language check
@@ -108,7 +108,7 @@ jobs:
108108
- name: Run unacceptable language check
109109
env:
110110
UNACCEPTABLE_WORD_LIST: ${{ inputs.unacceptable_language_check_word_list}}
111-
run: curl -s https://raw.githubusercontent.com/swiftlang/github-workflows/.github/workflows/scripts/check-unacceptable-language.sh | bash
111+
run: curl -s https://raw.githubusercontent.com/swiftlang/github-workflows/refs/heads/main/.github/workflows/scripts/check-unacceptable-language.sh | bash
112112

113113
license-header-check:
114114
name: License headers check
@@ -123,7 +123,7 @@ jobs:
123123
- name: Run license header check
124124
env:
125125
PROJECT_NAME: ${{ inputs.license_header_check_project_name }}
126-
run: curl -s https://raw.githubusercontent.com/swiftlang/github-workflows/.github/workflows/scripts/check-license-header.sh | bash
126+
run: curl -s https://raw.githubusercontent.com/swiftlang/github-workflows/refs/heads/main/.github/workflows/scripts/check-license-header.sh | bash
127127

128128
broken-symlink-check:
129129
name: Broken symlinks check
@@ -136,7 +136,7 @@ jobs:
136136
with:
137137
persist-credentials: false
138138
- name: Run broken symlinks check
139-
run: curl -s https://raw.githubusercontent.com/swiftlang/github-workflows/.github/workflows/scripts/check-broken-symlinks.sh | bash
139+
run: curl -s https://raw.githubusercontent.com/swiftlang/github-workflows/refs/heads/main/.github/workflows/scripts/check-broken-symlinks.sh | bash
140140

141141
format-check:
142142
name: Format check
@@ -156,7 +156,7 @@ jobs:
156156
- name: Run format check
157157
run: |
158158
apt-get -qq update && apt-get -qq -y install curl
159-
curl -s https://raw.githubusercontent.com/swiftlang/github-workflows/.github/workflows/scripts/check-swift-format.sh | bash
159+
curl -s https://raw.githubusercontent.com/swiftlang/github-workflows/refs/heads/main/.github/workflows/scripts/check-swift-format.sh | bash
160160
161161
shell-check:
162162
name: Shell check

0 commit comments

Comments
 (0)