Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.45
current_version = 0.0.46
commit = False
tag = False
serialize =
Expand Down
6 changes: 4 additions & 2 deletions .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@
"extends": [
"github>Linkurious/renovate-config",
"github>Linkurious/renovate-config:meta",
"regexManagers:dockerfileVersions"
"customManagers:dockerfileVersions"
],
"baseBranches": [
"develop"
],
"baseBranches": ["develop"],
"prConcurrentLimit": 10,
"packageRules": [
{
Expand Down
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.45
0.0.46
11 changes: 6 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG PRIVATE_REGISTRY=hub.docker.nexus3.linkurious.net/
FROM ${PRIVATE_REGISTRY}linkurious/docker-agent-jnlp:0.0.38
FROM ${PRIVATE_REGISTRY}linkurious/docker-agent-jnlp:0.0.40
LABEL maintainer="Edward Nys <edward@linkurio.us>"
SHELL ["/bin/bash", "-o", "pipefail", "-c"]

Expand All @@ -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=130.0.6723.91-1
ARG GOOGLE_CHROME_STABLE_VERSION=134.0.6998.88-1
# renovate: datasource=repology depName=debian_12/firefox-esr versioning=loose
ARG FIREFOX_ESR_VERSION=128.4.0esr-1~deb12u1
ARG FIREFOX_ESR_VERSION=128.8.0esr-1~deb12u1
RUN apt-get update -qqy && \
apt-get -qqy install --no-install-recommends \
#xvfb=2:1.20.4-1 \
Expand All @@ -36,8 +36,9 @@ 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.4 \
&& nvm install 20.18.0
&& nvm install 18.20.7 \
&& nvm install 20.19.0 \
&& nvm install 22.14.0

# for loading profile, to make nvm available for sh
ENV ENV='$HOME/.profile'
Expand Down