Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[internal] fix github action checkout and cache version
Browse files Browse the repository at this point in the history
mpoiriert committed May 10, 2024
1 parent 1c26663 commit 2846929
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/actionlint.yml
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Actionlint
uses: reviewdog/action-actionlint@v1
2 changes: 1 addition & 1 deletion .github/workflows/after_splitting_test.yaml
Original file line number Diff line number Diff line change
@@ -44,7 +44,7 @@ jobs:
steps:

- name: Checkout
uses: 'actions/checkout@v2'
uses: 'actions/checkout@v4'

- name: PHP Setup
uses: 'shivammathur/setup-php@v2'
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -42,7 +42,7 @@ jobs:
php-versions: ['8.1', '8.2', '8.3']
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
@@ -61,7 +61,7 @@ jobs:
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> "${GITHUB_OUTPUT}"
- name: Composer Cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-v3-${{ hashFiles('**/composer.lock') }}
2 changes: 1 addition & 1 deletion .github/workflows/phpcs.yml
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: PHP
uses: shivammathur/setup-php@v2
2 changes: 1 addition & 1 deletion .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: PHP
uses: shivammathur/setup-php@v2
2 changes: 1 addition & 1 deletion .github/workflows/yamllint.yml
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Yamllint
uses: reviewdog/action-yamllint@v1

0 comments on commit 2846929

Please sign in to comment.