Skip to content

Commit

Permalink
Merge pull request #488 from CycloneDX/dependency-submission
Browse files Browse the repository at this point in the history
build: run dependency-submission only on master branch
  • Loading branch information
skhokhlov authored Aug 9, 2024
2 parents 4de42b7 + 1046e09 commit 66144a6
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/dependency-submission.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Dependency Submission

on:
push:
branches:
- master
workflow_dispatch:

permissions:
contents: write

jobs:
dependency-submission:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/[email protected]
- name: Setup Java
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: 8
- name: Generate and submit dependency graph
uses: gradle/actions/[email protected]

0 comments on commit 66144a6

Please sign in to comment.