firefox/CVE-2011-3389/CVE-2019-7317 advisory updates (#9129) #4659
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: Build and publish YAML | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
build-publish: | |
name: Build and publish YAML | |
runs-on: ubuntu-latest | |
if: github.repository == 'wolfi-dev/advisories' | |
permissions: | |
id-token: write | |
contents: read | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
# this need to point to main to always get the latest action | |
- uses: wolfi-dev/actions/build-and-publish-yaml@main # main | |
with: | |
workload_identity_provider: "projects/618116202522/locations/global/workloadIdentityPools/prod-shared-e350/providers/prod-shared-gha" | |
service_account: "prod-images-ci@prod-images-c6e5.iam.gserviceaccount.com" | |
gcp_project_id: prod-images-c6e5 | |
wolfictl_args: "advisory export --advisories-repo-dir . --format yaml -o advisories.yaml" | |
gcs_apk_bucket_name: wolfi-production-registry-destination | |
gcs_apk_directory_name: os | |
- name: Post failure notice to Slack | |
uses: rtCamp/action-slack-notify@c33737706dea87cd7784c687dadc9adf1be59990 # ratchet:rtCamp/action-slack-notify@v2.3.2 | |
if: ${{ failure() }} | |
env: | |
SLACK_ICON: http://github.com/chainguard-dev.png?size=48 | |
SLACK_USERNAME: guardian | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK_URL }} | |
SLACK_CHANNEL: 'eng-squad-lifecycle-alerts' | |
SLACK_COLOR: '#8E1600' | |
MSG_MINIMAL: 'true' | |
SLACK_TITLE: Build/Publish YAML for ${{ github.repository }} failed! | |
SLACK_MESSAGE: | | |
For detailed logs: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} |