Skip to content

Commit

Permalink
Aktualisiere GHA actions/checkout und actions/cache (Case 171395)
Browse files Browse the repository at this point in the history
Automatischer Commit über webfactory/bfg9000#1
  • Loading branch information
mpdude committed Jun 7, 2024
1 parent 983723a commit f398406
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ env:
jobs:
composer-require-checker:
name: Check missing composer requirements
runs-on: ubuntu-20.04
runs-un: ubuntu-22.04
steps:
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ env.PHP_VERSION }}
coverage: none
tools: composer:v2
- uses: actions/checkout@v3
- uses: actions/cache@v3
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: vendor
key: composer-${{ runner.os }}-${{ env.PHP_VERSION }}-${{ hashFiles('composer.json') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/fix-cs-php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ name: Coding Standards
jobs:
open-pr-for-cs-violations:
name: PHP-CS-Fixer
runs-on: ubuntu-20.04
runs-un: ubuntu-22.04
if: github.actor != 'dependabot[bot]'
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ env:
jobs:
Psalm:
name: Psalm
runs-on: ubuntu-20.04
runs-un: ubuntu-22.04
steps:
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ env.PHP_VERSION }}
coverage: none
tools: composer:v2
- uses: actions/checkout@v3
- uses: actions/cache@v3
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: vendor
key: composer-${{ runner.os }}-${{ env.PHP_VERSION }}-${{ hashFiles('composer.json') }}
Expand All @@ -36,7 +36,7 @@ jobs:
composer install --no-interaction --no-progress --ansi --no-scripts
composer show
- name: Restore Psalm cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: /home/runner/.cache/psalm
key: psalm-${{ env.PSALM_VERSION }}-${{ env.PHP_VERSION }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ jobs:
php-version: ${{ matrix.php-version }}
coverage: none
tools: composer:v2
- uses: actions/checkout@v3
- uses: actions/cache@v3
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: vendor
key: composer-${{ runner.os }}-${{ matrix.php-version }}-${{ matrix.dependency-version }}-${{ hashFiles('composer.json') }}
Expand Down

0 comments on commit f398406

Please sign in to comment.