Skip to content

Commit

Permalink
jobs graphs improvement: set lowercase first
Browse files Browse the repository at this point in the history
Signed-off-by: Nicolas-Peiffer <[email protected]>
  • Loading branch information
Nicolas-Peiffer committed Nov 15, 2024
1 parent bcb440d commit 155b52b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/base-container-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ jobs:
# Job to build a SLSA provenance attestation
base-image-provenance:
name: Generate SLSA provenance attestation for OCI
needs: build-base-image # Ensure this job runs after build-base-image
needs: [build-base-image, set-lowercase-repository] # Ensure this job runs after build-base-image
permissions:
actions: read # for detecting the Github Actions environment.
id-token: write # for creating OIDC tokens for signing. Required for SLSA and Cosign
Expand All @@ -150,7 +150,7 @@ jobs:

# Kaniko job to build a container image "goreleaser-glibc-image" that has a goreleaser entrypoint
build-goreleaser-entryp-image:
needs: build-base-image # Ensure this job runs after build-base-image
needs: [build-base-image, set-lowercase-repository] # Ensure this job runs after build-base-image
runs-on: ubuntu-latest
steps:
- name: Checkout source code
Expand Down Expand Up @@ -235,7 +235,7 @@ jobs:

goreleaser-entryp-image-provenance:
name: Generate SLSA provenance attestation for OCI
needs: build-goreleaser-entryp-image # Ensure this job runs after build-base-image
needs: [build-goreleaser-entryp-image, set-lowercase-repository] # Ensure this job runs after build-base-image
permissions:
actions: read # for detecting the Github Actions environment.
id-token: write # for creating OIDC tokens for signing. Required for SLSA and Cosign
Expand Down

0 comments on commit 155b52b

Please sign in to comment.