Skip to content

Commit 3b9ed1e

Browse files
authored
chore: configure Dependabot and update actions to latest version (#10)
1 parent b46a663 commit 3b9ed1e

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

.github/dependabot.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
2+
3+
version: 2
4+
5+
updates:
6+
# Maintain dependencies for GitHub Actions
7+
- package-ecosystem: "github-actions"
8+
directory: "/"
9+
schedule:
10+
interval: "weekly"

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: PHPCS
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v5
1616

1717
- name: Setup
1818
uses: ./.github/actions/setup
@@ -27,7 +27,7 @@ jobs:
2727
name: PHPStan
2828
steps:
2929
- name: Checkout
30-
uses: actions/checkout@v2
30+
uses: actions/checkout@v5
3131

3232
- name: Setup
3333
uses: ./.github/actions/setup
@@ -50,7 +50,7 @@ jobs:
5050
name: Test on PHP ${{ matrix.php-version }} ${{ matrix.composer-flags }}
5151
steps:
5252
- name: Checkout
53-
uses: actions/checkout@v2
53+
uses: actions/checkout@v5
5454

5555
- name: Setup
5656
uses: ./.github/actions/setup

0 commit comments

Comments
 (0)