Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,18 @@ concurrency:

jobs:
test:
uses: platform-mesh/.github/.github/workflows/job-node-test.yml@75f52df7bff585bcb2d794a7bbeec132354933fb # main
uses: platform-mesh/.github/.github/workflows/job-node-test.yml@916c21a99d770c8917af03baec822c3c5a3e1140 # main
secrets: inherit # zizmor: ignore[secrets-inherit]

create-version:
uses: platform-mesh/.github/.github/workflows/job-create-version.yml@75f52df7bff585bcb2d794a7bbeec132354933fb # main
uses: platform-mesh/.github/.github/workflows/job-create-version.yml@916c21a99d770c8917af03baec822c3c5a3e1140 # main
secrets: inherit # zizmor: ignore[secrets-inherit]
permissions:
contents: write # Needed to create the GitHub release for the tag

docker-build-push:
needs: [create-version, test]
uses: platform-mesh/.github/.github/workflows/job-docker-build-push.yml@75f52df7bff585bcb2d794a7bbeec132354933fb # main
uses: platform-mesh/.github/.github/workflows/job-docker-build-push.yml@916c21a99d770c8917af03baec822c3c5a3e1140 # main
secrets: inherit # zizmor: ignore[secrets-inherit]
permissions:
contents: write # Needed to create the GitHub release for the tag
Expand All @@ -38,7 +38,7 @@ jobs:

update-version:
needs: [create-version, docker-build-push]
uses: platform-mesh/.github/.github/workflows/job-chart-version-update.yml@75f52df7bff585bcb2d794a7bbeec132354933fb # main
uses: platform-mesh/.github/.github/workflows/job-chart-version-update.yml@916c21a99d770c8917af03baec822c3c5a3e1140 # main
secrets: inherit # zizmor: ignore[secrets-inherit]
with:
appVersion: ${{ needs.create-version.outputs.version }}
Expand All @@ -47,7 +47,7 @@ jobs:

sbom:
needs: [create-version, docker-build-push]
uses: platform-mesh/.github/.github/workflows/job-sbom.yml@75f52df7bff585bcb2d794a7bbeec132354933fb # main
uses: platform-mesh/.github/.github/workflows/job-sbom.yml@916c21a99d770c8917af03baec822c3c5a3e1140 # main
permissions:
contents: read # Needed for actions/checkout in the reusable
packages: read # Needed to pull the image to scan
Expand All @@ -56,7 +56,7 @@ jobs:

image-ocm:
needs: [create-version, docker-build-push, sbom]
uses: platform-mesh/.github/.github/workflows/job-image-ocm.yml@75f52df7bff585bcb2d794a7bbeec132354933fb # main
uses: platform-mesh/.github/.github/workflows/job-image-ocm.yml@916c21a99d770c8917af03baec822c3c5a3e1140 # main
secrets: inherit # zizmor: ignore[secrets-inherit]
permissions:
contents: read # Needed for actions/checkout in the reusable
Expand All @@ -69,7 +69,7 @@ jobs:

scan-sbom:
needs: [create-version, docker-build-push, sbom, image-ocm]
uses: platform-mesh/.github/.github/workflows/job-trivy-sbom.yml@75f52df7bff585bcb2d794a7bbeec132354933fb # main
uses: platform-mesh/.github/.github/workflows/job-trivy-sbom.yml@916c21a99d770c8917af03baec822c3c5a3e1140 # main
permissions:
contents: read # Needed for actions/checkout in the reusable
packages: read # Needed to pull the image to scan
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/zizmor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ concurrency:

jobs:
zizmor:
uses: platform-mesh/.github/.github/workflows/job-zizmor.yml@03e076ff9aebe43ead6b9d77f3bb764a9d411347 # main
uses: platform-mesh/.github/.github/workflows/job-zizmor.yml@916c21a99d770c8917af03baec822c3c5a3e1140 # main
with:
persona: 'auditor'
permissions:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:24.16.0@sha256:8530f76a96d88820d288761f022e318970dda93d01536919fbc16076b7983e63 AS build
FROM node:24.18.0@sha256:5711a0d445a1af54af9589066c646df387d1831a608226f4cd694fc59e745059 AS build

COPY ./ /app

Expand Down
Loading
Loading