93
93
- name : Run documentation check
94
94
run : |
95
95
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
97
97
98
98
unacceptable-language-check :
99
99
name : Unacceptable language check
@@ -108,7 +108,7 @@ jobs:
108
108
- name : Run unacceptable language check
109
109
env :
110
110
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
112
112
113
113
license-header-check :
114
114
name : License headers check
@@ -123,7 +123,7 @@ jobs:
123
123
- name : Run license header check
124
124
env :
125
125
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
127
127
128
128
broken-symlink-check :
129
129
name : Broken symlinks check
@@ -136,7 +136,7 @@ jobs:
136
136
with :
137
137
persist-credentials : false
138
138
- 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
140
140
141
141
format-check :
142
142
name : Format check
@@ -156,7 +156,7 @@ jobs:
156
156
- name : Run format check
157
157
run : |
158
158
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
160
160
161
161
shell-check :
162
162
name : Shell check
0 commit comments