Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Denis Brumann committed Sep 8, 2022
1 parent 62031d3 commit 3a0b771
Show file tree
Hide file tree
Showing 9 changed files with 255 additions and 312 deletions.
1 change: 0 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# https://help.github.com/en/github/administering-a-repository/configuration-options-for-dependency-updates#target-branch

version: 2

updates:
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
name: "Build"
on:
pull_request:
push:
Expand All @@ -6,8 +7,6 @@ on:
tags:
- "**"

name: "Build"

jobs:
build:
name: "Build"
Expand Down
24 changes: 24 additions & 0 deletions .github/workflows/composer-diff.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Composer Diff
on:
pull_request_target:
types: [opened, synchronize, reopened]
paths:
- composer.lock
permissions:
pull-requests: write
contents: read

jobs:
comment-composer-lock-diff:
name: Comment composer.lock diff
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- name: Comment composer.lock diff
uses: WyriHaximus/github-action-composer.lock-diff@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3 changes: 1 addition & 2 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
name: "Static analysis"
on:
pull_request:
push:
Expand All @@ -6,8 +7,6 @@ on:
tags:
- "**"

name: "Static analysis"

jobs:
coding-standards:
name: "Coding Standards"
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
name: "Tests"
on:
pull_request:
push:
Expand All @@ -6,8 +7,6 @@ on:
tags:
- "**"

name: "Tests"

jobs:
unit-tests:
runs-on: ${{ matrix.os }}
Expand Down
Loading

0 comments on commit 3a0b771

Please sign in to comment.