Skip to content

Commit 66e7e29

Browse files
authored
Fix GH Actions config (#222)
1 parent ac914b7 commit 66e7e29

File tree

4 files changed

+13
-8
lines changed

4 files changed

+13
-8
lines changed

.github/dependabot.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@
55

66
version: 2
77
updates:
8-
- package-ecosystem: "github-actions" # See documentation for possible values
9-
directory: "/" # Location of package manifests
8+
- package-ecosystem: "github-actions"
9+
directory: "/"
10+
schedule:
11+
interval: "monthly"
12+
13+
- package-ecosystem: "composer"
14+
directory: "/"
1015
schedule:
1116
interval: "monthly"

.github/workflows/cs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
name: PHP ${{ matrix.php-version }}
1818

1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v4
2121

2222
- name: Setup PHP
2323
uses: shivammathur/setup-php@v2
@@ -28,7 +28,7 @@ jobs:
2828
tools: composer:v2
2929

3030
- name: Cache dependencies
31-
uses: actions/cache@v2
31+
uses: actions/cache@v4
3232
with:
3333
path: ~/.cache/composer
3434
key: composer-${{ matrix.php-version }}-${{ hashFiles('**/composer.*') }}

.github/workflows/mt.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
name: PHP ${{ matrix.php-version }} ${{ matrix.dependencies }}
2020

2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v4
2323

2424
- name: Setup PHP
2525
uses: shivammathur/setup-php@v2
@@ -30,7 +30,7 @@ jobs:
3030
tools: composer:v2
3131

3232
- name: Cache dependencies
33-
uses: actions/cache@v2
33+
uses: actions/cache@v4
3434
with:
3535
path: ~/.cache/composer
3636
key: composer-${{ matrix.php-version }}-${{ hashFiles('**/composer.*') }}

.github/workflows/tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
name: PHP ${{ matrix.php-version }} ${{ matrix.legend }}
2424

2525
steps:
26-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@v4
2727

2828
- name: Setup PHP
2929
uses: shivammathur/setup-php@v2
@@ -37,7 +37,7 @@ jobs:
3737
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
3838

3939
- name: Cache dependencies
40-
uses: actions/cache@v3
40+
uses: actions/cache@v4
4141
with:
4242
path: ${{ steps.composer-cache.outputs.dir }}
4343
key: composer-${{ runner.os }}-${{ matrix.php-version }}-${{ hashFiles('composer.*') }}-${{ matrix.composer-flags }}

0 commit comments

Comments
 (0)