-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
332 additions
and
2 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Audit bugsnag-symfony dependency licenses | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
license-audit: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
symfony-version: ['^3.4', '^4.4', '^5.0'] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: install PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: '8.0' | ||
|
||
- name: Fetch decisions.yml | ||
run: curl https://raw.githubusercontent.com/bugsnag/license-audit/master/config/decision_files/global.yml -o decisions.yml | ||
|
||
- name: Require Symfony | ||
run: ./.ci/require-symfony.sh "${{ matrix.symfony-version }}" | ||
|
||
- name: Install dependencies | ||
run: composer update --prefer-dist --no-progress --no-suggest --no-interaction --no-dev | ||
|
||
- name: Run License Finder | ||
# for some reason license finder doesn't run without a login shell (-l) | ||
run: > | ||
docker run -v $PWD:/scan licensefinder/license_finder /bin/bash -lc " | ||
cd /scan && | ||
license_finder --decisions-file decisions.yml --composer-check-require-only=true --enabled-package-managers=composer | ||
" |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ | |
/composer.phar | ||
/.idea | ||
.phpunit.result.cache | ||
decisions.yml |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,5 +11,5 @@ class BugsnagBundle extends Bundle | |
* | ||
* @return string | ||
*/ | ||
const VERSION = '1.9.0'; | ||
const VERSION = '1.10.0'; | ||
} |
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
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
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
Oops, something went wrong.