We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df47363 commit eaf2a67Copy full SHA for eaf2a67
1 file changed
.github/workflows/__call-common-lint.yml
@@ -125,11 +125,13 @@ jobs:
125
mkdir -p .github
126
printf "%s\n" "${ACTIONLINT_CONFIG}" > .github/actionlint.yml
127
elif [ ! -f ".github/actionlint.yml" ]; then
128
+ url="https://raw.githubusercontent.com/LizardByte/.github/master/.github/actionlint.yml"
129
+ echo "Downloading ${url} with curl"
130
curl \
131
-fsSL \
132
--retry 3 \
133
-o ".github/actionlint.yml" \
- "https://raw.githubusercontent.com/LizardByte/.github/master/.github/actionlint.yml"
134
+ ${url}
135
fi
136
137
- name: Replace shell
0 commit comments