mirror of
https://github.com/repo-runner/debian-node.git
synced 2024-11-08 13:50:09 +00:00
Use jq 1.6
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
39b69fdd86
commit
f3f3c4ce39
1 changed files with 9 additions and 6 deletions
15
build.sh
15
build.sh
|
@ -6,12 +6,11 @@ export DEBIAN_FRONTEND=noninteractive
|
|||
# Install required utils
|
||||
apt-get update
|
||||
apt-get install -y --no-install-recommends \
|
||||
apt-transport-https \
|
||||
ca-certificates \
|
||||
curl \
|
||||
git \
|
||||
jq \
|
||||
make
|
||||
apt-transport-https \
|
||||
ca-certificates \
|
||||
curl \
|
||||
git \
|
||||
make
|
||||
|
||||
# Download latest release of inner-runner
|
||||
DOWNLOAD=$(curl -sSfL https://api.github.com/repos/repo-runner/repo-runner/releases/latest |
|
||||
|
@ -19,6 +18,10 @@ DOWNLOAD=$(curl -sSfL https://api.github.com/repos/repo-runner/repo-runner/relea
|
|||
curl -sSfL "${DOWNLOAD}" | tar -xzf - -C /usr/local/bin
|
||||
mv /usr/local/bin/inner-runner* /usr/local/bin/inner-runner
|
||||
|
||||
# Download recent release of jq
|
||||
curl -sSfLo /usr/local/bin/jq https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64
|
||||
chmod 0755 /usr/local/bin/jq
|
||||
|
||||
# Cleanup
|
||||
apt-get autoremove --purge -y
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
|
Loading…
Reference in a new issue