-
Notifications
You must be signed in to change notification settings - Fork 136
88 lines (79 loc) · 3.5 KB
/
builder_maven_slsa3.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# Copyright 2023 SLSA Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
permissions: {}
on:
workflow_call:
inputs:
rekor-log-public:
description: "Allow publication of your repository name on the public Rekor log"
required: false
type: boolean
default: false
jdk-version:
description: "The JDK version"
required: false
default: 17
type: number
directory:
description: "Sub-directory to launch the build from. Must be under the workspace. Relative from the root of the file directory when invoking the builder."
required: false
type: string
default: "."
outputs:
provenance-name:
description: "The file name of the attestation upload artifact."
# NOTE: This is an "untrusted" value returned from the build.
value: "${{ fromJSON(jobs.slsa-run.outputs.build-artifacts-outputs).attestation-name }}"
provenance-download-name:
description: "The name of the provenance attestation uploaded to the workflow run."
value: "${{ jobs.slsa-run.outputs.attestations-download-name }}"
provenance-download-sha256:
description: "The sha256 of the provenance attestation uploaded to the workflow run."
value: "${{ jobs.slsa-run.outputs.attestations-download-sha256 }}"
target-download-name:
description: "The name of the target directory uploaded to the workflow run."
# NOTE: This is an "untrusted" value returned from the build. Technically
# the build could provide a target directory that doesn't match the
# provenance but it would fail validation.
value: "${{ fromJSON(jobs.slsa-run.outputs.build-artifacts-outputs).target-download-name }}"
target-download-sha256:
description: "The sha256 of the target uploaded to the workflow run."
value: "${{ fromJSON(jobs.slsa-run.outputs.build-artifacts-outputs).target-download-sha256 }}"
jobs:
slsa-setup:
permissions:
id-token: write # For token creation.
outputs:
slsa-token: "${{ steps.generate.outputs.slsa-token }}"
runs-on: ubuntu-latest
steps:
- name: Generate the token
id: generate
uses: slsa-framework/slsa-github-generator/actions/delegator/setup-generic@main
with:
slsa-workflow-recipient: "delegator_lowperms-generic_slsa3.yml"
slsa-rekor-log-public: "${{ inputs.rekor-log-public }}"
slsa-runner-label: "ubuntu-latest"
slsa-build-action-path: "./internal/builders/maven"
slsa-workflow-inputs: "${{ toJson(inputs) }}"
slsa-run:
needs: slsa-setup
permissions:
id-token: write # For signing.
contents: read # For asset uploads.
actions: read # For the entrypoint.
uses: slsa-framework/slsa-github-generator/.github/workflows/delegator_lowperms-generic_slsa3.yml@main
with:
slsa-token: "${{ needs.slsa-setup.outputs.slsa-token }}"
# TODO(#2154): need to add support for uploading provenance and artifact to registry