Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
Commit bc472944 authored by Christophe Chaudier's avatar Christophe Chaudier :rocket:
Browse files

Merge branch '78-update-images-to-the-latest-version' into 'master'

Resolve "update images to the latest version"

Closes #78

See merge request lydra/gitlab-ci-templates!57
parents 0522f004 62ad6b12
No related branches found
No related tags found
No related merge requests found
Pipeline #37455 failed
---
image: docker:19.03.0
image: docker:26.1.3
variables:
DOCKER_DRIVER: overlay2
# Create the certificates inside this directory for both the server
......@@ -11,4 +11,4 @@ variables:
# We use the docker in docker (dind) flavor of the docker service, meaning that
# we are running docker in a docker gitlab runner.
services:
- docker:19.03.0-dind
- docker:26.1.3-dind
......@@ -14,7 +14,7 @@ ci:images-list:
for file in $(find . -type f -name '*.yml' | grep -v "/test/"); do
# images in 'image' field
cat ${file} | tr -d ' ' | { grep '^image:' || true; } | sed 's/:/@/' | cut -d '@' -f 2 >> ${IMAGES_LIST_FILE}
echo $file
# images in 'image.name' field
yq e '.[].image.name as $image | $image' ${file} | { grep -v null || true; } >> ${IMAGES_LIST_FILE}
done
......
......@@ -2,7 +2,7 @@
# doc: https://github.com/hadolint/hadolint
container:lint:
extends: .base_tpl
image: hadolint/hadolint:2.0.0-alpine
image: hadolint/hadolint:latest-alpine
stage: lint
variables:
files_to_lint: ""
......
......@@ -11,7 +11,7 @@
# - One Container Scanning report upload
# The Job fail on severity in TRIVY_SEVERITY_FAIL
#
# TRIVY_VERSION: defalt 0.18.1
# TRIVY_VERSION: defalt 0.52.0
# TRIVY_SEVERITY_FAIL: List of the severity for failing.
# Values can be : "LOW,MEDIUM,HIGH,CRITICAL"
# Default : "HIGH,CRITICAL"
......@@ -25,7 +25,7 @@ container:security:
entrypoint: [""]
variables:
GIT_STRATEGY: none
TRIVY_VERSION: "0.18.1"
TRIVY_VERSION: "0.52.0"
TRIVY_USERNAME: "${CI_REGISTRY_USER}"
TRIVY_PASSWORD: "${CI_REGISTRY_PASSWORD}"
TRIVY_AUTH_URL: "${CI_REGISTRY}"
......
......@@ -70,7 +70,7 @@ variables:
extends:
- .base_tpl
- .node-cache-pull
image: node:14.15.4-slim
image: node:lts-slim
# --------[ Java ]--------
.java-cache-push:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment