From fb8b0f20ae507c22e4a20333cbc1b100b40ac027 Mon Sep 17 00:00:00 2001 From: OpenTelemetry Bot <107717825+opentelemetrybot@users.noreply.github.com> Date: Wed, 19 Feb 2025 00:28:46 -0800 Subject: [PATCH] Add FOSSA scanning workflow (#6331) See https://github.com/open-telemetry/community/issues/2574 for details Co-authored-by: otelbot <197425009+otelbot@users.noreply.github.com> Co-authored-by: Damien Mathieu <42@dmathieu.com> --- .github/workflows/fossa.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/fossa.yml diff --git a/.github/workflows/fossa.yml b/.github/workflows/fossa.yml new file mode 100644 index 000000000..3beaa09b7 --- /dev/null +++ b/.github/workflows/fossa.yml @@ -0,0 +1,20 @@ +name: FOSSA scanning + +on: + push: + branches: + - main + +permissions: + contents: read + +jobs: + fossa: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + + - uses: fossas/fossa-action@93a52ecf7c3ac7eb40f5de77fd69b1a19524de94 # v1.5.0 + with: + api-key: ${{secrets.FOSSA_API_KEY}} + team: OpenTelemetry