Skip to content
This repository was archived by the owner on Jun 22, 2024. It is now read-only.

Commit 3316b94

Browse files
Merge branch 'trunk' of https://github.com/SeleniumHQ/docker-selenium into trunk
2 parents 29b3e08 + 46716f5 commit 3316b94

38 files changed

+262
-162
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,6 @@ body:
5555
attributes:
5656
label: Docker Selenium version (tag)
5757
description: What version of Docker Selenium are you using?
58-
placeholder: 4.3.0-20220726? Please use the full tag, avoid "latest"
58+
placeholder: 4.4.0-20220812? Please use the full tag, avoid "latest"
5959
validations:
6060
required: true

.github/workflows/build-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Output Docker info
2626
run: docker info
2727
- name: Set up Python 3.8
28-
uses: actions/setup-python@v4.1.0
28+
uses: actions/setup-python@v4.2.0
2929
with:
3030
python-version: 3.8
3131
- name: Get branch name (only for push to branch)

.github/workflows/deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,25 +51,25 @@ jobs:
5151
DOCKER_USERNAME: ${{secrets.DOCKER_USERNAME}}
5252
DOCKER_PASSWORD: ${{secrets.DOCKER_PASSWORD}}
5353
- name: Deploy new images
54-
uses: nick-invision/retry@e88a9994b039653512d697de1bce46b00bfe11b5 # v2
54+
uses: nick-invision/retry@b4fa57557dda8c2f30bcb2d19372cc3237190f7f # v2
5555
with:
5656
timeout_minutes: 20
5757
max_attempts: 3
5858
command: VERSION="${GRID_VERSION}" BUILD_DATE=${BUILD_DATE} make release
5959
- name: Tag images as latest
60-
uses: nick-invision/retry@e88a9994b039653512d697de1bce46b00bfe11b5 # v2
60+
uses: nick-invision/retry@b4fa57557dda8c2f30bcb2d19372cc3237190f7f # v2
6161
with:
6262
timeout_minutes: 20
6363
max_attempts: 3
6464
command: VERSION="${GRID_VERSION}" BUILD_DATE=${BUILD_DATE} make tag_latest
6565
- name: Deploy latest tag
66-
uses: nick-invision/retry@e88a9994b039653512d697de1bce46b00bfe11b5 # v2
66+
uses: nick-invision/retry@b4fa57557dda8c2f30bcb2d19372cc3237190f7f # v2
6767
with:
6868
timeout_minutes: 20
6969
max_attempts: 3
7070
command: VERSION="${GRID_VERSION}" BUILD_DATE=${BUILD_DATE} make release_latest
7171
- name: Tag browser images
72-
uses: nick-invision/retry@e88a9994b039653512d697de1bce46b00bfe11b5 # v2
72+
uses: nick-invision/retry@b4fa57557dda8c2f30bcb2d19372cc3237190f7f # v2
7373
with:
7474
timeout_minutes: 20
7575
max_attempts: 3

.github/workflows/test-video.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Output Docker info
2323
run: docker info
2424
- name: Set up Python 3.8
25-
uses: actions/setup-python@v4.1.0
25+
uses: actions/setup-python@v4.2.0
2626
with:
2727
python-version: 3.8
2828
- name: Get branch name (only for push to branch)

Base/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ COPY supervisord.conf /etc
9090
RUN mkdir -p /opt/selenium /opt/selenium/assets /var/run/supervisor /var/log/supervisor \
9191
&& touch /opt/selenium/config.toml \
9292
&& chmod -R 777 /opt/selenium /opt/selenium/assets /var/run/supervisor /var/log/supervisor /etc/passwd \
93-
&& wget --no-verbose https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.3.0/selenium-server-4.3.0.jar \
93+
&& wget --no-verbose https://github.com/SeleniumHQ/selenium/releases/download/selenium-4.4.0/selenium-server-4.4.0.jar \
9494
-O /opt/selenium/selenium-server.jar \
9595
&& chgrp -R 0 /opt/selenium ${HOME} /opt/selenium/assets /var/run/supervisor /var/log/supervisor \
9696
&& chmod -R g=u /opt/selenium ${HOME} /opt/selenium/assets /var/run/supervisor /var/log/supervisor

Distributor/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
33
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
44
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
5-
FROM selenium/base:4.3.0-20220726
5+
FROM selenium/base:4.4.0-20220812
66
LABEL authors=SeleniumHQ
77

88
USER 1200

EventBus/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
33
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
44
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
5-
FROM selenium/base:4.3.0-20220726
5+
FROM selenium/base:4.4.0-20220812
66
LABEL authors=SeleniumHQ
77

88
USER 1200

Hub/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
33
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
44
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
5-
FROM selenium/base:4.3.0-20220726
5+
FROM selenium/base:4.4.0-20220812
66
LABEL authors=SeleniumHQ
77

88
USER 1200

NodeBase/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
33
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
44
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
5-
FROM selenium/base:4.3.0-20220726
5+
FROM selenium/base:4.4.0-20220812
66
LABEL authors=SeleniumHQ
77

88
USER root

NodeChrome/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
33
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
44
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
5-
FROM selenium/node-base:4.3.0-20220726
5+
FROM selenium/node-base:4.4.0-20220812
66
LABEL authors=SeleniumHQ
77

88
USER root

0 commit comments

Comments
 (0)