summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorDaniel Micay <danielmicay@gmail.com>2021-09-30 00:56:08 -0400
committerDaniel Micay <danielmicay@gmail.com>2021-09-30 01:03:29 -0400
commit3278595b30eae110f5c4db641e75c470feb0151f (patch)
treee6018ca9e1d5ae66283a82ab2d902afebf655d5f /.github
parentf4c40e0a653695d7ad348a91efa6258ac965b7a6 (diff)
use curl instead of wget for workflow
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/static.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml
index fd242b98..c1e488cb 100644
--- a/.github/workflows/static.yml
+++ b/.github/workflows/static.yml
@@ -31,7 +31,7 @@ jobs:
- name: Download validatornu
# There isn't a package with a `validatornu` command in Ubuntu, so download the validator
# from the GitHub releases and change the validate-static script later to use it.
- run: wget https://github.com/validator/validator/releases/download/${{ env.VALIDATOR_VERSION }}/vnu.linux.zip && unzip vnu.linux.zip
+ run: curl -OL https://github.com/validator/validator/releases/download/${{ env.VALIDATOR_VERSION }}/vnu.linux.zip && unzip vnu.linux.zip
if: steps.validator-cache.outputs.cache-hit != 'true'
- run: sed -i 's+validatornu+vnu-runtime-image/bin/vnu+g' validate-static