Skip to content

Commit

Permalink
Revert "Bump actions/checkout from 2 to 2.3.4 (#4678)"
Browse files Browse the repository at this point in the history
This reverts commit 77e5635.
  • Loading branch information
MGatner authored May 12, 2021
1 parent 3509f60 commit 3e57c4d
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-apidocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ jobs:
git config --global user.name "${GITHUB_ACTOR}"
- name: Checkout source
uses: actions/checkout@v2.3.4
uses: actions/checkout@v2
with:
path: source

- name: Checkout target
uses: actions/checkout@v2.3.4
uses: actions/checkout@v2
with:
repository: codeigniter4/api
token: ${{ secrets.ACCESS_TOKEN }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/deploy-framework.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
git config --global user.name "${GITHUB_ACTOR}"
- name: Checkout source
uses: actions/checkout@v2.3.4
uses: actions/checkout@v2
with:
path: source

- name: Checkout target
uses: actions/checkout@v2.3.4
uses: actions/checkout@v2
with:
repository: codeigniter4/framework
token: ${{ secrets.ACCESS_TOKEN }}
Expand Down Expand Up @@ -63,12 +63,12 @@ jobs:
git config --global user.name "${GITHUB_ACTOR}"
- name: Checkout source
uses: actions/checkout@v2.3.4
uses: actions/checkout@v2
with:
path: source

- name: Checkout target
uses: actions/checkout@v2.3.4
uses: actions/checkout@v2
with:
repository: codeigniter4/appstarter
token: ${{ secrets.ACCESS_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-userguide-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2.3.4
uses: actions/checkout@v2

# Build the latest User Guide
- name: Build with Sphinx
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
php-versions: ['7.4', '8.0']
steps:
- name: Checkout
uses: actions/checkout@v2.3.4
uses: actions/checkout@v2

- name: Setup PHP
uses: shivammathur/setup-php@2.11.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
run: sqlcmd -S 127.0.0.1 -U sa -P 1Secure*Password1 -Q "CREATE DATABASE test"

- name: Checkout
uses: actions/checkout@v2.3.4
uses: actions/checkout@v2

- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@2.11.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-rector.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
php-versions: ['7.4', '8.0']
steps:
- name: Checkout
uses: actions/checkout@v2.3.4
uses: actions/checkout@v2

- name: Setup PHP
uses: shivammathur/setup-php@2.11.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-userguide.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
name: Check User Guide syntax
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v2
- uses: ammaraskar/sphinx-action@0.4
with:
docs-folder: user_guide_src

0 comments on commit 3e57c4d

Please sign in to comment.