David Moran
David Moran
I also see something similar when running locally on my laptop. I run trivy and it scans the file, but reports no failures. I immediately rerun the same command, and...
Using version `0.31.2` appears to be returning the expected results consistently. Thanks!
@GuillaumeRossolini what version of postgresql are you hitting? `pg_dump` in version 12 got rid of `--oids` https://www.postgresql.org/docs/12/app-pgdump.html. Since we're still running version 11 internally, we've had to manually pin the...
Yeah, looks like Alpine deprecated the 11.7 package. We updated our dockerfile to this ``` # Installs and pins postgresql to v11 RUN echo 'http://dl-cdn.alpinelinux.org/alpine/v3.10/main' >> /etc/apk/repositories RUN apk update...
Yeah, we moved everything back to Codecov internally. Seems they fixed their Github notification issues and it's worked a lot better for us.
As a workaround, we moved to installing from the release files directly. ```sh wget http://github.com/golang-migrate/migrate/releases/latest/download/migrate.linux-amd64.deb sudo dpkg -i migrate.linux-amd64.deb ```