From dc2072929ef3b00653b876a2a9ad173e3bae83c5 Mon Sep 17 00:00:00 2001 From: Linkurious ci bot Date: Tue, 23 Jul 2024 12:57:03 +0000 Subject: [PATCH 1/5] =?UTF-8?q?Bump=20version:=200.0.44=20=E2=86=92=200.0.?= =?UTF-8?q?45=20[ci:run]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- .version | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 2c0e028..4630de7 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.44 +current_version = 0.0.45 commit = False tag = False serialize = diff --git a/.version b/.version index 2aa9160..31c01c9 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.0.44 +0.0.45 From ea540f2b3c45a8d7cce4ab10984f39658d3e9b61 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 4 Nov 2024 16:45:10 +0100 Subject: [PATCH 2/5] Update hub.docker.nexus3.linkurious.net/linkurious/docker-agent-jnlp Docker tag to v0.0.38 (#129) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a7be6d5..4a5d472 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ ARG PRIVATE_REGISTRY=hub.docker.nexus3.linkurious.net/ -FROM ${PRIVATE_REGISTRY}linkurious/docker-agent-jnlp:0.0.37 +FROM ${PRIVATE_REGISTRY}linkurious/docker-agent-jnlp:0.0.38 LABEL maintainer="Edward Nys " SHELL ["/bin/bash", "-o", "pipefail", "-c"] From 060c0d42f2fdb0e5c1b11137f9b459360e5657d6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 4 Nov 2024 15:56:04 +0000 Subject: [PATCH 3/5] Update browsers (#127) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4a5d472..c592ca9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,9 +11,9 @@ RUN curl -fsSL https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key a # Latest Ubuntu Google Chrome, XVFB and JRE installs # renovate: datasource=repology depName=aur/google-chrome versioning=loose -ARG GOOGLE_CHROME_STABLE_VERSION=126.0.6478.182-1 +ARG GOOGLE_CHROME_STABLE_VERSION=130.0.6723.91-1 # renovate: datasource=repology depName=debian_12/firefox-esr versioning=loose -ARG FIREFOX_ESR_VERSION=115.13.0esr-1~deb12u1 +ARG FIREFOX_ESR_VERSION=128.4.0esr-1~deb12u1 RUN apt-get update -qqy && \ apt-get -qqy install --no-install-recommends \ #xvfb=2:1.20.4-1 \ From 150e1f0fb1b3745cea85711d396f5f0529c5ce36 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 4 Nov 2024 16:06:18 +0000 Subject: [PATCH 4/5] Update dependency nvm-sh/nvm to v0.40.1 (#128) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c592ca9..186e7e4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,7 +27,7 @@ RUN apt-get update -qqy && \ USER jenkins # renovate: datasource=github-releases depName=nvm-sh/nvm -ARG NVM_VERSION=v0.39.7 +ARG NVM_VERSION=v0.40.1 # hadolint ignore=SC1091, SC2016 RUN git clone --depth 1 --branch "$NVM_VERSION" https://github.com/nvm-sh/nvm.git ~/.nvm && \ echo -e 'export NVM_DIR="$HOME/.nvm"\n[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm\n' >> ~/.bashrc \ From 6e245056a97d434a4f50c7520d5c307bde745ee0 Mon Sep 17 00:00:00 2001 From: Edward Nys <36994826+enys@users.noreply.github.com> Date: Tue, 5 Nov 2024 13:48:54 +0100 Subject: [PATCH 5/5] DAJN-43: Bump node 18 (#130) --- Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 186e7e4..4cb6915 100644 --- a/Dockerfile +++ b/Dockerfile @@ -36,10 +36,8 @@ RUN git clone --depth 1 --branch "$NVM_VERSION" https://github.com/nvm-sh/nvm.gi && export NVM_DIR="$HOME/.nvm" && \. "$NVM_DIR/nvm.sh" \ && nvm install 14.21.3 \ && nvm install 16.20.2 \ - && nvm install 18.20.1 \ && nvm install 18.20.4 \ - && nvm install 20.14.0 \ - && nvm install 20.15.1 + && nvm install 20.18.0 # for loading profile, to make nvm available for sh ENV ENV='$HOME/.profile'