mirror of
https://github.com/hoverkraft-tech/compose-action.git
synced 2026-01-13 16:13:08 +08:00
Bumps the npm-dev-dependencies group with 1 update in the / directory: [@ts-dev-tools/core](https://github.com/escemi-tech/ts-dev-tools). Updates `@ts-dev-tools/core` from 1.6.2 to 1.8.9 - [Release notes](https://github.com/escemi-tech/ts-dev-tools/releases) - [Commits](https://github.com/escemi-tech/ts-dev-tools/compare/@ts-dev-tools/core@1.6.2...@ts-dev-tools/core@1.8.9) --- updated-dependencies: - dependency-name: "@ts-dev-tools/core" dependency-type: direct:development update-type: version-update:semver-minor dependency-group: npm-dev-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Emilien Escalle <emilien.escalle@escemi.com>
12 lines
270 B
Docker
12 lines
270 B
Docker
#checkov:skip=CKV_DOCKER_2: required
|
|
FROM ghcr.io/super-linter/super-linter:slim-v7
|
|
|
|
ARG UID=1000
|
|
ARG GID=1000
|
|
RUN chown -R ${UID}:${GID} /github/home
|
|
USER ${UID}:${GID}
|
|
|
|
ENV RUN_LOCAL=true
|
|
ENV USE_FIND_ALGORITHM=true
|
|
ENV LOG_LEVEL=WARN
|
|
ENV LOG_FILE="/github/home/logs" |