-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update base OS image and maven dependency versions as upstream (#2096)
Signed-off-by: Viet Nguyen Duc <[email protected]>
- Loading branch information
Showing
2 changed files
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,6 +41,12 @@ jobs: | |
echo ${GRID_VERSION} | ||
echo "BASE_VERSION=$(echo ${GRID_VERSION})" >> $GITHUB_ENV | ||
echo "BASE_RELEASE=nightly" >> $GITHUB_ENV | ||
- name: Update tag nightly | ||
uses: richardsimko/[email protected] | ||
with: | ||
tag_name: ${{ env.BASE_RELEASE }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Remove local Docker tag | ||
run: docker rmi ${{ env.NAME }}/base:local-${BUILD_DATE} | ||
- name: Build images | ||
|
@@ -105,9 +111,3 @@ jobs: | |
draft: false | ||
prerelease: true | ||
append_body: false | ||
- name: Update tag nightly | ||
uses: richardsimko/[email protected] | ||
with: | ||
tag_name: ${{ env.BASE_RELEASE }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
FROM ubuntu:jammy-20231128 | ||
FROM ubuntu:jammy-20240111 | ||
Check notice on line 1 in Base/Dockerfile GitHub Actions / Scan Dockerfile vulnerabilitiesDS026
Check notice on line 1 in Base/Dockerfile GitHub Actions / Scan Dockerfile vulnerabilitiesDS026
|
||
LABEL authors="Selenium <[email protected]>" | ||
|
||
# Arguments to define the version of dependencies to download | ||
ARG VERSION | ||
ARG RELEASE=selenium-${VERSION} | ||
# Default value should be aligned with upstream Selenium (https://github.com/SeleniumHQ/selenium/blob/trunk/java/maven_deps.bzl) | ||
ARG OPENTELEMETRY_VERSION=1.28.0 | ||
ARG GRPC_VERSION=1.57.1 | ||
ARG OPENTELEMETRY_VERSION=1.33.0 | ||
ARG GRPC_VERSION=1.60.1 | ||
|
||
#Arguments to define the user running Selenium | ||
ARG SEL_USER=seluser | ||
|