feat: bump runner version (#705)

* feat: bump runner version

* feat: remove deprecated env var

* docs: updating the docs

Co-authored-by: Callum James Tait <[email protected]>
This commit is contained in:
toast-gear
2021-07-30 19:58:04 +09:00
committed by GitHub
co-authored by Callum James Tait
parent 29260549fa
commit 743e6d6202
7 changed files with 7 additions and 12 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
FROM ubuntu:20.04
ARG TARGETPLATFORM
ARG RUNNER_VERSION=2.278.0
ARG RUNNER_VERSION=2.279.0
ARG DOCKER_VERSION=19.03.12
RUN test -n "$TARGETPLATFORM" || (echo "TARGETPLATFORM must be set" && false)
+1 -1
View File
@@ -48,7 +48,7 @@ RUN adduser --disabled-password --gecos "" --uid 1000 runner \
&& echo "%sudo ALL=(ALL:ALL) NOPASSWD:ALL" > /etc/sudoers
ARG TARGETPLATFORM
ARG RUNNER_VERSION=2.278.0
ARG RUNNER_VERSION=2.279.0
ARG DOCKER_CHANNEL=stable
ARG DOCKER_VERSION=19.03.13
ARG DEBUG=false
+1 -1
View File
@@ -1,7 +1,7 @@
FROM ubuntu:18.04
ARG TARGETPLATFORM
ARG RUNNER_VERSION=2.278.0
ARG RUNNER_VERSION=2.279.0
ARG DOCKER_VERSION=19.03.12
RUN test -n "$TARGETPLATFORM" || (echo "TARGETPLATFORM must be set" && false)
+1 -1
View File
@@ -2,7 +2,7 @@ NAME ?= summerwind/actions-runner
DIND_RUNNER_NAME ?= ${NAME}-dind
TAG ?= latest
RUNNER_VERSION ?= 2.278.0
RUNNER_VERSION ?= 2.279.0
DOCKER_VERSION ?= 19.03.12
# default list of platforms for which multiarch image is built
+1 -6
View File
@@ -1,11 +1,6 @@
#!/bin/bash
# TODO: Remove `STARTUP_DELAY` entirely. `STARTUP_DELAY` is deprecated
# Issue #673, PR #678
if [ ! -z "${STARTUP_DELAY}" ]; then
echo "Delaying startup by ${STARTUP_DELAY} seconds" 1>&2
sleep ${STARTUP_DELAY}
elif [ ! -z "${STARTUP_DELAY_IN_SECONDS}" ]; then
if [ ! -z "${STARTUP_DELAY_IN_SECONDS}" ]; then
echo "Delaying startup by ${STARTUP_DELAY_IN_SECONDS} seconds" 1>&2
sleep ${STARTUP_DELAY_IN_SECONDS}
fi