Skip to content

Commit 14c4243

Browse files
authored
Correct GitHub Action deprecations + Opt into Dependabot (#23)
* fix: update to latest github action versions * feat: opt into Dependabot for GitHub Action health
1 parent ac29660 commit 14c4243

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

Diff for: .github/dependabot.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: github-actions
4+
directory: /
5+
schedule:
6+
interval: weekly

Diff for: .github/workflows/formats.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
steps:
1919

2020
- name: Checkout
21-
uses: actions/checkout@v2
21+
uses: actions/checkout@v4
2222

2323
- name: Cache dependencies
24-
uses: actions/cache@v1
24+
uses: actions/cache@v4
2525
with:
2626
path: ~/.composer/cache/files
2727
key: dependencies-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}

Diff for: .github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ jobs:
2828
steps:
2929

3030
- name: Checkout
31-
uses: actions/checkout@v2
31+
uses: actions/checkout@v4
3232

3333
- name: Cache dependencies
34-
uses: actions/cache@v1
34+
uses: actions/cache@v4
3535
with:
3636
path: ~/.composer/cache/files
3737
key: dependencies-php-${{ matrix.php }}-SF${{ matrix.symfony }}-${{ matrix.dependency-version }}-composer-${{ hashFiles('composer.json') }}

0 commit comments

Comments
 (0)