Skip to content

Commit 30aa74b

Browse files
chore(deps): bump actions/checkout from 2.4.0 to 3 (#207)
Bumps [actions/checkout](https://github.com/actions/checkout) from 2.4.0 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2.4.0...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 665c331 commit 30aa74b

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout master
13-
uses: actions/checkout@v2.4.0
13+
uses: actions/checkout@v3
1414

1515
- name: Deploy docs
1616
uses: mhausenblas/mkdocs-deploy-gh-pages@master

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
steps:
1010
- name: Checkout code
11-
uses: actions/checkout@v2.4.0
11+
uses: actions/checkout@v3
1212
with:
1313
ref: ${{ github.head_ref }}
1414

.github/workflows/phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: phpstan
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v2.4.0
14+
- uses: actions/checkout@v3
1515

1616
- name: Setup PHP
1717
uses: shivammathur/setup-php@v2

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
steps:
1414
# git clone + use PHP + composer install
15-
- uses: actions/checkout@v2.4.0
15+
- uses: actions/checkout@v3
1616
- uses: shivammathur/setup-php@v2
1717
with:
1818
php-version: 8.0
@@ -47,7 +47,7 @@ jobs:
4747
name: PHP ${{ matrix.php }} tests
4848

4949
steps:
50-
- uses: actions/checkout@v2.4.0
50+
- uses: actions/checkout@v3
5151
# required for "git tag" presence for changelog-linker git tags resolver; default is 1
5252
# https://github.com/actions/checkout#fetch-all-tags
5353
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*

0 commit comments

Comments
 (0)