Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2

updates:
# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: PHPCS
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v5

- name: Setup
uses: ./.github/actions/setup
Expand All @@ -27,7 +27,7 @@ jobs:
name: PHPStan
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v5

- name: Setup
uses: ./.github/actions/setup
Expand All @@ -50,7 +50,7 @@ jobs:
name: Test on PHP ${{ matrix.php-version }} ${{ matrix.composer-flags }}
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v5

- name: Setup
uses: ./.github/actions/setup
Expand Down