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
31 changes: 31 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,37 @@ jobs:
--type spdxjson \
ghcr.io/${{ github.repository }}/agent@${{ steps.build_agent.outputs.digest }}

- name: Build and push API Proxy image
id: build_api_proxy
uses: docker/build-push-action@ca052bb54ab0790a636c9b5f226502c73d547a25 # v5
with:
context: ./containers/api-proxy
push: true
tags: |
ghcr.io/${{ github.repository }}/api-proxy:${{ steps.version_early.outputs.version_number }}
ghcr.io/${{ github.repository }}/api-proxy:latest
cache-from: type=gha
cache-to: type=gha,mode=max

- name: Sign API Proxy image with cosign
run: |
cosign sign --yes \
ghcr.io/${{ github.repository }}/api-proxy@${{ steps.build_api_proxy.outputs.digest }}

- name: Generate SBOM for API Proxy image
uses: anchore/sbom-action@28d71544de8eaf1b958d335707167c5f783590ad # v0.22.2
with:
image: ghcr.io/${{ github.repository }}/api-proxy@${{ steps.build_api_proxy.outputs.digest }}
format: spdx-json
output-file: api-proxy-sbom.spdx.json

- name: Attest SBOM for API Proxy image
run: |
cosign attest --yes \
--predicate api-proxy-sbom.spdx.json \
--type spdxjson \
ghcr.io/${{ github.repository }}/api-proxy@${{ steps.build_api_proxy.outputs.digest }}

# Build agent-act image with catthehacker/ubuntu:act-24.04 base for GitHub Actions parity
- name: Build and push Agent-Act image
id: build_agent_act
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@github/agentic-workflow-firewall",
"version": "0.16.4",
"version": "0.16.5",
"description": "Network firewall for agentic workflows with domain whitelisting",
"main": "dist/cli.js",
"bin": {
Expand Down
Loading