Skip to content
This repository was archived by the owner on Jun 5, 2025. It is now read-only.

Bump library/node from 23-slim@sha256:f2cf744a59dcdd05b354754704a527de9fb0c5d8e924b0fc3628dedc23573c39 to sha256:c5bfe90b30e795ec57bcc0040065ca6f284af84a1dafd22a207bd6b48c39ce01 #1157

Bump library/node from 23-slim@sha256:f2cf744a59dcdd05b354754704a527de9fb0c5d8e924b0fc3628dedc23573c39 to sha256:c5bfe90b30e795ec57bcc0040065ca6f284af84a1dafd22a207bd6b48c39ce01

Bump library/node from 23-slim@sha256:f2cf744a59dcdd05b354754704a527de9fb0c5d8e924b0fc3628dedc23573c39 to sha256:c5bfe90b30e795ec57bcc0040065ca6f284af84a1dafd22a207bd6b48c39ce01 #1157

Workflow file for this run

# These set of workflows run on every pull request
name: Run - pull_request
on:
workflow_dispatch:
pull_request:
branches: [ main ]
jobs:
security:
name: Security Checks
uses: ./.github/workflows/security.yml
ci:
name: Build, Test & Lint
uses: ./.github/workflows/ci.yml
image-build:
name: OCI Image - Build x86
uses: ./.github/workflows/image-build.yml
with:
artifact-name: "codegate-image"
platform: "linux/amd64"
image-build-arm64:
name: OCI Image - Build ARM64
uses: ./.github/workflows/image-build.yml
with:
artifact-name: "codegate-image"
platform: "linux/arm64"
integration-tests:
if: github.event.pull_request.head.repo.full_name == 'stacklok/codegate'
name: Integration Tests
needs: [ci, image-build] # We need the image available in order to run the integration tests
uses: ./.github/workflows/integration-tests.yml
with:
artifact-name: "codegate-image"
secrets:
copilot-key: ${{ secrets.INTEGRATION_TESTS_COPILOT_KEY }}
anthropic-key: ${{ secrets.INTEGRATION_TESTS_ANTHROPIC_KEY }}
openrouter-key: ${{ secrets.INTEGRATION_TESTS_OPENROUTER_KEY }}