chore(deps): update npm dev #5165
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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. | |
name: pre-submit e2e generic default | |
on: | |
pull_request: | |
branches: [main] | |
merge_group: | |
workflow_dispatch: | |
permissions: read-all | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
build: | |
permissions: | |
id-token: write # For signing. | |
contents: write # For asset uploads. | |
actions: read # For reading workflow info. | |
uses: ./.github/workflows/generator_generic_slsa3.yml | |
with: | |
# echo "2e0390eb024a52963db7b95e84a9c2b12c004054a7bad9a97ec0c7c89d4681d2 binary-name" | base64 -w0 | |
base64-subjects: "MmUwMzkwZWIwMjRhNTI5NjNkYjdiOTVlODRhOWMyYjEyYzAwNDA1NGE3YmFkOWE5N2VjMGM3Yzg5ZDQ2ODFkMiAgICBiaW5hcnktbmFtZQo=" | |
compile-generator: true | |
provenance-name: build.intoto.jsonl | |
verify: | |
# NOTE: this name is used as the status check name and by protected | |
# branches for required status checks. It should have a unique name among | |
# other pre-submits. | |
name: verify generic provenance | |
runs-on: ubuntu-latest | |
needs: [build] | |
if: ${{ always() }} | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8 | |
with: | |
name: ${{ needs.build.outputs.provenance-name }} | |
- env: | |
BINARY: "binary-name" | |
PROVENANCE: ${{ needs.build.outputs.provenance-name }} | |
run: ./.github/workflows/scripts/pre-submit.e2e.generic.default.sh | |
build-continue-no-error: | |
permissions: | |
id-token: write # For signing. | |
contents: write # For asset uploads. | |
actions: read # For reading workflow info. | |
uses: ./.github/workflows/generator_generic_slsa3.yml | |
with: | |
# echo "2e0390eb024a52963db7b95e84a9c2b12c004054a7bad9a97ec0c7c89d4681d2 binary-name" | base64 -w0 | |
base64-subjects: "MmUwMzkwZWIwMjRhNTI5NjNkYjdiOTVlODRhOWMyYjEyYzAwNDA1NGE3YmFkOWE5N2VjMGM3Yzg5ZDQ2ODFkMiAgICBiaW5hcnktbmFtZQo=" | |
compile-generator: true | |
continue-on-error: true | |
provenance-name: build-continue-no-error.intoto.jsonl | |
verify-continue-no-error: | |
# NOTE: this name is used as the status check name and by protected | |
# branches for required status checks. It should have a unique name among | |
# other pre-submits. | |
name: verify generic provenance (continue-on-error) | |
runs-on: ubuntu-latest | |
needs: [build-continue-no-error] | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8 | |
with: | |
name: ${{ needs.build-continue-no-error.outputs.provenance-name }} | |
- env: | |
BINARY: "binary-name" | |
PROVENANCE: ${{ needs.build-continue-no-error.outputs.provenance-name }} | |
OUTCOME: ${{ needs.build-continue-no-error.outputs.outcome }} | |
run: | | |
[ "$OUTCOME" == "success" ] && ./.github/workflows/scripts/pre-submit.e2e.generic.default.sh | |
build-continue-invalid-subjects: | |
permissions: | |
id-token: write # For signing. | |
contents: write # For asset uploads. | |
actions: read # For reading workflow info. | |
uses: ./.github/workflows/generator_generic_slsa3.yml | |
with: | |
base64-subjects: "invalid base64 subjects" | |
compile-generator: true | |
continue-on-error: true | |
provenance-name: build-continue-invalid-subjects.intoto.jsonl | |
verify-continue-invalid-subjects: | |
# NOTE: this name is used as the status check name and by protected | |
# branches for required status checks. It should have a unique name among | |
# other pre-submits. | |
name: verify generic provenance (continue-on-error invalid subjects) | |
runs-on: ubuntu-latest | |
needs: [build, build-continue-invalid-subjects] | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8 | |
with: | |
name: ${{ needs.build.outputs.provenance-name }} | |
- env: | |
BINARY: "binary-name" | |
PROVENANCE: ${{ needs.build-continue-invalid-subjects.outputs.provenance-name }} | |
OUTCOME: ${{ needs.build-continue-invalid-subjects.outputs.outcome }} | |
run: | | |
[ "$OUTCOME" == "failure" ] | |
# Note: we don't call ./.github/workflows/scripts/pre-submit.e2e.generic.default.sh | |
# because the provenance generation failed, so there is no provenance generated. |