We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 94d14b0 + 02df469 commit a4a2635Copy full SHA for a4a2635
.github/pipeline-version
@@ -1 +1 @@
1
-1.15.1
+1.16.0
.github/workflows/update-clojure.yml
@@ -63,6 +63,10 @@ jobs:
63
--id "${ID}" \
64
--version-pattern "${VERSION_PATTERN}" \
65
--version "${VERSION}" \
66
+ --cpe-pattern "${CPE_PATTERN:-}" \
67
+ --cpe "${CPE:-}" \
68
+ --purl-pattern "${PURL_PATTERN:-}" \
69
+ --purl "${PURL:-}" \
70
--uri "${URI}" \
71
--sha256 "${SHA256}"
72
@@ -81,7 +85,11 @@ jobs:
81
85
echo "::set-output name=new-version::${VERSION}"
82
86
echo "::set-output name=version-label::${LABEL}"
83
87
env:
88
+ CPE: ${{ steps.dependency.outputs.cpe }}
89
+ CPE_PATTERN: ""
84
90
ID: clojure
91
+ PURL: ${{ steps.dependency.outputs.purl }}
92
+ PURL_PATTERN: ""
93
SHA256: ${{ steps.dependency.outputs.sha256 }}
94
URI: ${{ steps.dependency.outputs.uri }}
95
VERSION: ${{ steps.dependency.outputs.version }}
0 commit comments