Skip to content

Commit 6c5b14c

Browse files
Merge pull request #48 from Linkurious/develop
Release 0.0.23 [ci:run]
2 parents 5acb5d5 + 85dba8a commit 6c5b14c

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.0.22
2+
current_version = 0.0.23
33
commit = False
44
tag = False
55
serialize =

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.22
1+
0.0.23

Dockerfile

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG PRIVATE_REGISTRY=hub.docker.nexus3.linkurious.net/
2-
FROM ${PRIVATE_REGISTRY}linkurious/docker-agent-jnlp:0.0.19
2+
FROM ${PRIVATE_REGISTRY}linkurious/docker-agent-jnlp:0.0.20
33
LABEL maintainer="Edward Nys <edward@linkurio.us>"
44
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
55
USER root
@@ -9,9 +9,9 @@ RUN curl -fsSL https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key a
99

1010
# Latest Ubuntu Google Chrome, XVFB and JRE installs
1111
# renovate: datasource=repology depName=aur/google-chrome versioning=loose
12-
ARG GOOGLE_CHROME_STABLE_VERSION=108.0.5359.94-1
12+
ARG GOOGLE_CHROME_STABLE_VERSION=109.0.5414.74-1
1313
# renovate: datasource=repology depName=debian_11/firefox-esr versioning=loose
14-
ARG FIREFOX_ESR_VERSION=102.5.0esr-1~deb11u1
14+
ARG FIREFOX_ESR_VERSION=102.6.0esr-1~deb11u1
1515
RUN apt-get update -qqy && \
1616
apt-get -qqy install --no-install-recommends \
1717
#xvfb=2:1.20.4-1 \
@@ -25,17 +25,18 @@ RUN apt-get update -qqy && \
2525
USER jenkins
2626

2727
# renovate: datasource=github-releases depName=nvm-sh/nvm
28-
ARG NVM_VERSION=v0.39.1
28+
ARG NVM_VERSION=v0.39.3
2929
# hadolint ignore=SC1091, SC2016
3030
RUN git clone --depth 1 --branch "$NVM_VERSION" https://github.com/nvm-sh/nvm.git ~/.nvm && \
3131
echo -e 'export NVM_DIR="$HOME/.nvm"\n[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm\n' >> ~/.bashrc \
3232
&& echo -e 'export NVM_DIR="$HOME/.nvm"\n[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm\n' >> ~/.profile \
3333
&& source ~/.bashrc \
3434
&& export NVM_DIR="$HOME/.nvm" && \. "$NVM_DIR/nvm.sh" \
35-
&& nvm install 16.18.1 \
36-
&& nvm install 14.20.0 \
37-
&& nvm install 10.24.1
38-
#for loading profile, to make nvm available for sh
35+
&& nvm install 16.19.0 \
36+
&& nvm install 18.13.0 \
37+
&& nvm install 14.20.0
38+
39+
# for loading profile, to make nvm available for sh
3940
ENV ENV='$HOME/.profile'
4041
# hadolint ignore=SC1091
4142
RUN export NVM_DIR="$HOME/.nvm" && \. "$NVM_DIR/nvm.sh"

0 commit comments

Comments
 (0)