Skip to content

Commit a1a1a2d

Browse files
authored
Merge branch 'main' into feature/fix-subpackage-names-libjpeg-dev
Signed-off-by: dlorenc <lorenc.d@gmail.com>
2 parents 2fb99ce + d379cbd commit a1a1a2d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+3466
-190
lines changed

.github/workflows/ci-build.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,18 @@ jobs:
8484
echo "exists=false" >> $GITHUB_OUTPUT
8585
fi
8686
87+
# Note: vulns found in scans do not currently block CI
88+
- name: 'Grype scan APKs'
89+
id: grype-scan
90+
if: steps.file_check.outputs.exists == 'true'
91+
run: |
92+
set -x
93+
for line in `cat packages.log`; do
94+
# convert the melange output (e.g. "x86_64|grype|grype|0.63.0-r1" ) to an actual apk path
95+
apk_path=$(echo "${line}" | awk '{ split($1, pkg, "|"); printf("packages/%s/%s-%s.apk\n", pkg[1], pkg[3], pkg[4]) }')
96+
./scripts/grype-scan-apk.sh "${apk_path}"
97+
done
98+
8799
- name: Check sonames
88100
id: soname
89101
if: steps.file_check.outputs.exists == 'true'

.github/workflows/push-production.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,9 @@ jobs:
8282
"${{ github.workspace }}/packages/x86_64/APKINDEX.json" gs://wolfi-production-registry-destination/os/x86_64/
8383
8484
# apks will be cached in CDN for an hour by default.
85+
# Don't upload the object if it already exists.
8586
gcloud --quiet storage cp \
87+
--no-clobber \
8688
"${{ github.workspace }}/packages/x86_64/*.apk" gs://wolfi-production-registry-destination/os/x86_64/
8789
8890
postrun:

aws-cli.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package:
22
name: aws-cli
3-
version: 1.27.162
4-
epoch: 0
3+
version: 1.27.164
4+
epoch: 1
55
description: "Universal Command Line Interface for Amazon Web Services"
66
copyright:
77
- license: Apache-2.0
@@ -33,7 +33,7 @@ pipeline:
3333
- uses: fetch
3434
with:
3535
uri: https://github.com/aws/aws-cli/archive/${{package.version}}.tar.gz
36-
expected-sha256: bf4e810cc2b6193454b7c1706d5aa2234c15b19b88300ab45ea56cd633f8466d
36+
expected-sha256: d92c97189720024c2c618cd9e15ae3408183bcde64ac94af764dac8073e1d822
3737

3838
- runs: |
3939
python3 setup.py build

0 commit comments

Comments
 (0)