File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 13
13
- name : Install Dependencies (Linux)
14
14
run : |
15
15
sudo apt-get update -y
16
- sudo apt-get install -y devscripts debhelper moreutils fakeroot jq pigz help2man wget
16
+ sudo apt-get install -y devscripts debhelper moreutils fakeroot jq pigz help2man
17
17
wget "https://github.com/koalaman/shellcheck/releases/download/latest/shellcheck-latest.linux.x86_64.tar.xz"
18
18
tar --xz -xvf "shellcheck-latest.linux.x86_64.tar.xz"
19
19
sudo cp shellcheck-latest/shellcheck /usr/bin/shellcheck
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ begin_test "ghe-host-check detects unsupported GitHub Enterprise Server versions
55
55
# shellcheck disable=SC2046 # Word splitting is required to populate the variables
56
56
read -r bu_version_major bu_version_minor _ <<< $( ghe_parse_version $BACKUP_UTILS_VERSION )
57
57
bu_major_minor=" $bu_version_major .$bu_version_minor "
58
- releases=$( wget -qO- https://github-enterprise.s3.amazonaws.com/release/latest.json)
58
+ releases=$( /usr/bin/curl -s https://github-enterprise.s3.amazonaws.com/release/latest.json)
59
59
supported=$( echo $releases | jq -r ' select(."' ${bu_major_minor} ' ")' )
60
60
# shellcheck disable=SC2207 # Command required as alternatives fail
61
61
keys=($( echo $releases | jq -r ' keys[]' ) )
You can’t perform that action at this time.
0 commit comments