mirror of
https://github.com/carhartl/talisman-secrets-scan-action.git
synced 2024-12-04 13:27:27 +00:00
Downgrade Talisman to v1.11.0
Overlooked that v1.22.0 was a preview anyway, there was a problem with entries in .talismanrc not correctly being considered. For some reason v1.11.0 didn't run in Alpine though, thus I switched to Ubuntu. Fixes #1
This commit is contained in:
parent
9946bb8931
commit
4a31b2b153
1 changed files with 3 additions and 3 deletions
|
@ -1,8 +1,8 @@
|
|||
FROM alpine:3.13.6
|
||||
FROM ubuntu:20.04
|
||||
|
||||
RUN apk update && apk add git
|
||||
RUN apt update && apt install -y git
|
||||
|
||||
ADD ["https://github.com/thoughtworks/talisman/releases/download/v1.22.0/talisman_linux_amd64", "/talisman"]
|
||||
ADD ["https://github.com/thoughtworks/talisman/releases/download/v1.11.0/talisman_linux_amd64", "/talisman"]
|
||||
RUN chmod +x /talisman
|
||||
|
||||
COPY entrypoint.sh /entrypoint.sh
|
||||
|
|
Loading…
Reference in a new issue