.github/workflows/e2e.nodejs.create.main.default.slsa3.yml #9575
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
on: | |
schedule: | |
- cron: "0 6 * * *" | |
workflow_dispatch: | |
create: | |
permissions: read-all | |
concurrency: "e2e-nodejs-create-main-default-slsa3" | |
env: | |
GH_TOKEN: ${{ secrets.E2E_NODEJS_TOKEN }} | |
ISSUE_REPOSITORY: slsa-framework/slsa-github-generator | |
# NOTE: must be kept in sync with shim 'if' expressions. | |
DEFAULT_VERSION: v39.0.0 | |
jobs: | |
# Bootstrap | |
################################################################################ | |
bootstrap: | |
runs-on: ubuntu-latest | |
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
# Bumps the package version pushes, creates a git tag, and pushes the tag. | |
- run: ./.github/workflows/scripts/e2e-bootstrap.sh | |
if-bootstrap-failed: | |
runs-on: ubuntu-latest | |
needs: [bootstrap] | |
if: always() && (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch') && needs.bootstrap.result != 'success' | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- run: ./.github/workflows/scripts/e2e-report-failure.sh | |
# Main workflow | |
################################################################################ | |
# Shim determines if the rest of the workflow should run. | |
# NOTE: it should only use the `if` to determine this and all downstream jobs | |
# should depend on this job. | |
shim: | |
# NOTE: this must be kept in sync with the if-failed job. | |
if: github.event_name == 'create' && startsWith(github.ref, 'refs/tags/v39') | |
runs-on: ubuntu-latest | |
steps: | |
- run: | | |
echo "event: ${GITHUB_EVENT_NAME}" | |
echo "ref: ${GITHUB_REF}" | |
build: | |
needs: [shim] | |
permissions: | |
id-token: write # For signing. | |
contents: read # For repo checkout of private repos. | |
actions: read # For getting workflow run on private repos. | |
uses: slsa-framework/slsa-github-generator/.github/workflows/builder_nodejs_slsa3.yml@main | |
with: | |
directory: e2e/nodejs/e2e-nodejs-create-main-default-slsa3 | |
node-version: 20 | |
run-scripts: "ci, build" | |
publish: | |
needs: [build] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Node environment | |
uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1 | |
with: | |
node-version: 20 | |
registry-url: "https://registry.npmjs.org" | |
- name: publish | |
id: publish | |
uses: slsa-framework/slsa-github-generator/actions/nodejs/publish@main | |
with: | |
access: public | |
node-auth-token: ${{ secrets.E2E_NODE_ACCESS_TOKEN }} | |
package-name: ${{ needs.build.outputs.package-name }} | |
package-download-name: ${{ needs.build.outputs.package-download-name }} | |
package-download-sha256: ${{ needs.build.outputs.package-download-sha256 }} | |
provenance-name: ${{ needs.build.outputs.provenance-name }} | |
provenance-download-name: ${{ needs.build.outputs.provenance-download-name }} | |
provenance-download-sha256: ${{ needs.build.outputs.provenance-download-sha256 }} | |
verify: | |
runs-on: ubuntu-latest | |
needs: [build, publish] | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Set up Node environment | |
uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1 | |
with: | |
node-version: 20 | |
# NOTE: for building the verifier. | |
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0 | |
with: | |
go-version: "1.21" | |
- run: ./.github/workflows/scripts/e2e.nodejs.default.verify.sh | |
if-succeeded: | |
runs-on: ubuntu-latest | |
needs: [build, publish, verify] | |
if: needs.build.result == 'success' && needs.publish.result == 'success' && needs.verify.result == 'success' | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- run: ./.github/workflows/scripts/e2e-report-success.sh | |
if-failed: | |
runs-on: ubuntu-latest | |
needs: [build, publish, verify] | |
if: always() && github.event_name == 'create' && startsWith(github.ref, 'refs/tags/v39') && (needs.build.result != 'success' || needs.publish.result != 'success' || needs.verify.result != 'success') | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- run: ./.github/workflows/scripts/e2e-report-failure.sh |