fix(deps): update rust crate warp to v0.3.3 [security] #152
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
name: Push to Artifact Registry GitHub Action | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
Build-Container-dev: | |
uses: celo-org/reusable-workflows/.github/workflows/[email protected] | |
if: github.ref != 'refs/heads/main' | |
with: | |
workload-id-provider: projects/1094498259535/locations/global/workloadIdentityPools/gh-optics-monorepo/providers/github-by-repos | |
service-account: [email protected] | |
artifact-registry: ${{ vars.DEV_IMAGE_REPO }}/optics-agent | |
tag: testing | |
context: ./rust | |
file: ./rust/Dockerfile | |
trivy: true | |
trivy-timeout: 30m | |
Build-Container: | |
uses: celo-org/reusable-workflows/.github/workflows/[email protected] | |
if: github.ref == 'refs/heads/main' | |
with: | |
workload-id-provider: projects/1094498259535/locations/global/workloadIdentityPools/gh-optics-monorepo-main/providers/github-by-repos | |
service-account: [email protected] | |
artifact-registry: us-west1-docker.pkg.dev/devopsre/optics-monorepo/optics-agent | |
tag: latest | |
context: ./rust | |
file: ./rust/Dockerfile | |
trivy: true | |
trivy-timeout: 30m | |