Skip to content
Open
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 .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6

- uses: astral-sh/setup-uv@e06108dd0aef18192324c70427afc47652e63a82 # v7
- uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7

- id: setup-python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scans.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6

- uses: bridgecrewio/checkov-action@f9b0a2206b0401cad02ac0a66be2a7934a5be838 # master
- uses: bridgecrewio/checkov-action@2fd3901c8feb52417f27f0d9800259a106c1ec1e # master
with:
soft_fail: ${{ github.event_name != 'pull_request' }}

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
##
# base
##
FROM debian:stable-slim@sha256:85dfcffff3c1e193877f143d05eaba8ae7f3f95cb0a32e0bc04a448077e1ac69 AS base
FROM debian:stable-slim@sha256:99fc6d2a0882fcbcdc452948d2d54eab91faafc7db037df82425edcdcf950e1f AS base

# set up user
ARG USER=user
Expand Down Expand Up @@ -33,7 +33,7 @@
APT::AutoRemove::SuggestsImportant "false";
EOF

RUN apt-get update && \

Check warning on line 36 in Dockerfile

View workflow job for this annotation

GitHub Actions / kics

[MEDIUM] Apt Get Install Pin Version Not Defined

When installing a package, its pin version should be defined
apt-get upgrade --yes && \
apt-get install --yes --no-install-recommends curl \
&& rm -rf /var/lib/apt/lists/*
Expand All @@ -43,7 +43,7 @@
##
FROM base AS dev

RUN apt-get update && \

Check warning on line 46 in Dockerfile

View workflow job for this annotation

GitHub Actions / kics

[MEDIUM] Apt Get Install Pin Version Not Defined

When installing a package, its pin version should be defined
apt-get install --yes --no-install-recommends build-essential \
&& rm -rf /var/lib/apt/lists/*

Expand Down Expand Up @@ -91,7 +91,7 @@
FROM dev AS compile

USER root
RUN apt-get update && \

Check warning on line 94 in Dockerfile

View workflow job for this annotation

GitHub Actions / kics

[MEDIUM] Apt Get Install Pin Version Not Defined

When installing a package, its pin version should be defined

Check warning on line 94 in Dockerfile

View workflow job for this annotation

GitHub Actions / kics

[MEDIUM] Apt Get Install Pin Version Not Defined

When installing a package, its pin version should be defined
apt-get install --yes --no-install-recommends \
binutils \
patchelf \
Expand Down
Loading