Skip to content

Commit 735218d

Browse files
committed
Aktualisiere GHA actions/checkout und actions/cache (Case 171395)
Automatischer Commit über webfactory/bfg9000#1
1 parent 255f584 commit 735218d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/dependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: Check missing composer requirements
1515
runs-on: ubuntu-22.04
1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
- name: Konfiguriere PHP-Version und -Einstellungen im Worker-Node
1919
uses: shivammathur/setup-php@v2
2020
with:

.github/workflows/fix-cs-php.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-22.04
1313
steps:
1414
- name: Checkout code
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
1616
with:
1717
ref: ${{ github.head_ref }}
1818

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ jobs:
2121
- { php-version: 8.3, symfony-locked-version: none, dependency-version: prefer-stable }
2222
name: PHPUnit (PHP ${{matrix.php-version}}, Symfony Version Lock ${{ matrix.symfony-locked-version }}, ${{ matrix.dependency-version }})
2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525
- uses: shivammathur/setup-php@v2
2626
with:
2727
php-version: ${{ matrix.php-version }}
2828
coverage: none
2929
tools: composer:v2
30-
- uses: actions/cache@v3
30+
- uses: actions/cache@v4
3131
with:
3232
path: vendor
3333
key: composer-${{ runner.os }}-${{ matrix.php-version }}-${{ matrix.symfony-locked-version }}-${{ matrix.dependency-version }}-${{ hashFiles('composer.json') }}

0 commit comments

Comments
 (0)