Skip to content

Commit 67c2a0f

Browse files
committed
Aktualisiere GHA actions/checkout und actions/cache (Case 171395)
Automatischer Commit über webfactory/bfg9000#1
1 parent 719eb1d commit 67c2a0f

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/dependencies.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ env:
1515
jobs:
1616
composer-require-checker:
1717
name: Check missing composer requirements
18-
runs-on: ubuntu-20.04
18+
runs-un: ubuntu-22.04
1919
steps:
2020
- uses: shivammathur/setup-php@v2
2121
with:
2222
php-version: ${{ env.PHP_VERSION }}
2323
coverage: none
2424
tools: composer:v2
25-
- uses: actions/checkout@v3
26-
- uses: actions/cache@v3
25+
- uses: actions/checkout@v4
26+
- uses: actions/cache@v4
2727
with:
2828
path: vendor
2929
key: composer-${{ runner.os }}-${{ env.PHP_VERSION }}-${{ matrix.symfony-locked-version }}-${{ matrix.dependency-version }}-${{ hashFiles('composer.json') }}

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

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

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212
jobs:
1313
PHPUnit:
1414

15-
runs-on: ubuntu-20.04
15+
runs-un: ubuntu-22.04
1616
strategy:
1717
fail-fast: false
1818
matrix:
@@ -24,13 +24,13 @@ jobs:
2424
- { php-version: 8.3, symfony-locked-version: none, dependency-version: prefer-stable }
2525
name: PHPUnit (PHP ${{matrix.php-version}}, Symfony Version Lock ${{ matrix.symfony-locked-version }}, ${{ matrix.dependency-version }})
2626
steps:
27-
- uses: actions/checkout@v3
27+
- uses: actions/checkout@v4
2828
- uses: shivammathur/setup-php@v2
2929
with:
3030
php-version: ${{ matrix.php-version }}
3131
coverage: none
3232
tools: composer:v2
33-
- uses: actions/cache@v3
33+
- uses: actions/cache@v4
3434
with:
3535
path: vendor
3636
key: composer-${{ runner.os }}-${{ matrix.php-version }}-${{ matrix.symfony-locked-version }}-${{ matrix.dependency-version }}-${{ hashFiles('composer.json') }}

0 commit comments

Comments
 (0)