Skip to content

Commit afc2c10

Browse files
committed
Aktualisiere GHA actions/checkout und actions/cache (Case 171395)
Automatischer Commit über webfactory/bfg9000#1
1 parent 596ccab commit afc2c10

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ name: Coding Standards
99
jobs:
1010
open-pr-for-cs-violations:
1111
name: PHP-CS-Fixer
12-
runs-on: ubuntu-20.04
12+
runs-un: ubuntu-22.04
1313
if: github.actor != 'dependabot[bot]'
1414
steps:
1515
- name: Checkout code
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717
with:
1818
ref: ${{ github.head_ref }}
1919

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ env:
1111

1212
jobs:
1313
PHPUnit:
14-
runs-on: ubuntu-20.04
14+
runs-un: ubuntu-22.04
1515
strategy:
1616
fail-fast: false
1717
matrix:
@@ -21,13 +21,13 @@ jobs:
2121
- { php-version: 8.1, 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)