Skip to content

Commit 561706a

Browse files
chore(deps): bump actions/checkout from 2 to 3 (#5760)
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 8211a86 commit 561706a

12 files changed

+16
-16
lines changed

.github/workflows/deploy-apidocs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ jobs:
2424
git config --global user.name "${GITHUB_ACTOR}"
2525
2626
- name: Checkout source
27-
uses: actions/checkout@v2
27+
uses: actions/checkout@v3
2828
with:
2929
path: source
3030

3131
- name: Checkout target
32-
uses: actions/checkout@v2
32+
uses: actions/checkout@v3
3333
with:
3434
repository: codeigniter4/api
3535
token: ${{ secrets.ACCESS_TOKEN }}

.github/workflows/deploy-framework.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ jobs:
1818
git config --global user.name "${GITHUB_ACTOR}"
1919
2020
- name: Checkout source
21-
uses: actions/checkout@v2
21+
uses: actions/checkout@v3
2222
with:
2323
path: source
2424

2525
- name: Checkout target
26-
uses: actions/checkout@v2
26+
uses: actions/checkout@v3
2727
with:
2828
repository: codeigniter4/framework
2929
token: ${{ secrets.ACCESS_TOKEN }}
@@ -63,12 +63,12 @@ jobs:
6363
git config --global user.name "${GITHUB_ACTOR}"
6464
6565
- name: Checkout source
66-
uses: actions/checkout@v2
66+
uses: actions/checkout@v3
6767
with:
6868
path: source
6969

7070
- name: Checkout target
71-
uses: actions/checkout@v2
71+
uses: actions/checkout@v3
7272
with:
7373
repository: codeigniter4/appstarter
7474
token: ${{ secrets.ACCESS_TOKEN }}

.github/workflows/deploy-userguide-latest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v2
22+
uses: actions/checkout@v3
2323

2424
# Build the latest User Guide
2525
- name: Build with Sphinx

.github/workflows/test-autoreview.yml

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

2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@v2
24+
uses: actions/checkout@v3
2525

2626
- name: Setup PHP
2727
uses: shivammathur/setup-php@v2

.github/workflows/test-coding-standards.yml

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

2727
steps:
2828
- name: Checkout
29-
uses: actions/checkout@v2
29+
uses: actions/checkout@v3
3030

3131
- name: Setup PHP
3232
uses: shivammathur/setup-php@v2

.github/workflows/test-deptrac.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
runs-on: ubuntu-20.04
3131
steps:
3232
- name: Checkout
33-
uses: actions/checkout@v2
33+
uses: actions/checkout@v3
3434

3535
- name: Setup PHP
3636
uses: shivammathur/setup-php@v2

.github/workflows/test-phpcpd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
runs-on: ubuntu-20.04
3030
steps:
3131
- name: Checkout
32-
uses: actions/checkout@v2
32+
uses: actions/checkout@v3
3333

3434
- name: Setup PHP
3535
uses: shivammathur/setup-php@v2

.github/workflows/test-phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
php-versions: ['8.0', '8.1']
3838
steps:
3939
- name: Checkout
40-
uses: actions/checkout@v2
40+
uses: actions/checkout@v3
4141

4242
- name: Setup PHP
4343
uses: shivammathur/setup-php@v2

.github/workflows/test-phpunit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
run: echo -e "ALTER SESSION SET CONTAINER = XEPDB1;\nCREATE BIGFILE TABLESPACE \"TEST\" DATAFILE '/opt/oracle/product/18c/dbhomeXE/dbs/TEST' SIZE 10M AUTOEXTEND ON MAXSIZE UNLIMITED SEGMENT SPACE MANAGEMENT AUTO EXTENT MANAGEMENT LOCAL AUTOALLOCATE;\nCREATE USER \"ORACLE\" IDENTIFIED BY \"ORACLE\" DEFAULT TABLESPACE \"TEST\" TEMPORARY TABLESPACE TEMP QUOTA UNLIMITED ON \"TEST\";\nGRANT CONNECT,RESOURCE TO \"ORACLE\";\nexit;" | /lib/oracle/18.5/client64/bin/sqlplus -s sys/Oracle18@localhost:1521/XE as sysdba
121121

122122
- name: Checkout
123-
uses: actions/checkout@v2
123+
uses: actions/checkout@v3
124124

125125
- name: Setup PHP, with composer and extensions
126126
uses: shivammathur/setup-php@v2

.github/workflows/test-rector.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
php-versions: ['7.4', '8.0']
3838
steps:
3939
- name: Checkout
40-
uses: actions/checkout@v2
40+
uses: actions/checkout@v3
4141

4242
- name: Setup PHP
4343
uses: shivammathur/setup-php@v2

0 commit comments

Comments
 (0)