Skip to content

Commit

Permalink
Update checkout action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
shivammathur committed Mar 24, 2024
1 parent c8d9203 commit 8c53163
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dispatch-single-icu-all-php-intl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ jobs:
echo sender=${{github.event.sender.login}}
echo ICU=${{github.event.inputs.icu}}
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install requirements
run: bash src/install-requirements.sh
env:
TS: ${{ matrix.ts }}
VERSION: ${{ matrix.php }}
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Update intl
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dispatch-single-icu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: icu4c
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build icu
env:
ICU: ${{ github.event.inputs.icu }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dispatch-single-php-all-icu-intl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ jobs:
echo sender=${{github.event.sender.login}}
echo PHP=${{github.event.inputs.php}}
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install requirements
run: bash src/install-requirements.sh
env:
VERSION: ${{github.event.inputs.php}}
TS: ${{ matrix.ts }}
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Update intl
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ jobs:
echo ICU=${{github.event.inputs.icu}}
echo TS=${{github.event.inputs.ts}}
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install requirements
run: bash src/install-requirements.sh
env:
TS: ${{ github.event.inputs.ts }}
VERSION: ${{ matrix.php }}
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Update intl
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ jobs:
echo PHP=${{github.event.inputs.php}}
echo TS=${{github.event.inputs.ts}}
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install requirements
run: bash src/install-requirements.sh
env:
TS: ${{github.event.inputs.ts}}
VERSION: ${{github.event.inputs.php}}
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Update intl
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/icu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
name: icu4c
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build icu
env:
ICU: ${{ matrix.icu }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/intl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ jobs:
name: php-intl
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install requirements
run: bash src/install-requirements.sh
env:
TS: ${{ matrix.php }}
VERSION: ${{ matrix.php }}
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Update intl
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
ts: ['ts', 'nts']
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup PHP 5.6
uses: shivammathur/setup-php@develop
with:
Expand Down

0 comments on commit 8c53163

Please sign in to comment.