Skip to content

Commit ba73464

Browse files
committed
Update GitHub Action versions
1 parent 9e9584c commit ba73464

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.github/workflows/coding-standard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout repository
11-
uses: actions/checkout@v2
11+
uses: actions/checkout@v4
1212

1313
- name: Setup PHP
1414
uses: shivammathur/setup-php@v2

.github/workflows/lock.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: 🔒 Lock closed issues and PRs
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: dessant/lock-threads@v3
14+
- uses: dessant/lock-threads@v5
1515
with:
1616
github-token: ${{ github.token }}
1717
issue-inactive-days: "30"

.github/workflows/unit-testing.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: PHP ${{ matrix.php-versions }} PHPUnit Test
1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919

2020
- name: Setup PHP
2121
uses: shivammathur/setup-php@v2
@@ -24,7 +24,7 @@ jobs:
2424
ini-values: error_reporting=E_ALL
2525

2626
- name: Install Composer Dependencies
27-
uses: "ramsey/composer-install@v2"
27+
uses: ramsey/composer-install@v3
2828

2929
- name: Log debug information
3030
run: |
@@ -41,6 +41,7 @@ jobs:
4141

4242
- name: Check Code Coverage
4343
if: ${{ matrix.report }}
44-
uses: codecov/codecov-action@v3
44+
uses: codecov/codecov-action@v4
4545
with:
46-
directory: ./coverage/
46+
directory: ./coverage/
47+
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)