Skip to content

Commit e48ae61

Browse files
committed
update GitHub Actions
1 parent a1f18ee commit e48ae61

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.github/workflows/codestyle.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ jobs:
1919
name: PHP
2020
runs-on: self-hosted
2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323
- name: Setup PHP with tools
2424
uses: shivammathur/setup-php@v2
2525
with:
26-
php-version: '8.1'
26+
php-version: '8.3'
2727
extensions: ctype, dom, exif, gd, gmp, hash, intl, json, libxml, mbstring, opcache, pcre, pdo, pdo_mysql, zlib
2828
tools: cs2pr, phpcs, php-cs-fixer
2929
- name: phpcs

.github/workflows/php.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,9 @@ jobs:
2222
php:
2323
- '8.1'
2424
- '8.2'
25+
- '8.3'
2526
steps:
26-
- uses: actions/checkout@v3
27+
- uses: actions/checkout@v4
2728
- name: Set up PHP
2829
uses: shivammathur/setup-php@v2
2930
with:

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
permissions:
1212
contents: write
1313
steps:
14-
- uses: actions/checkout@v3
15-
- uses: actions/setup-node@v3
14+
- uses: actions/checkout@v4
15+
- uses: actions/setup-node@v4
1616
with:
1717
node-version: "16"
1818
- name: Create package
@@ -21,15 +21,15 @@ jobs:
2121
npx --yes wspackager@latest
2222
- name: Check file existence
2323
id: check_files
24-
uses: andstor/file-existence-action@v2
24+
uses: andstor/file-existence-action@v3
2525
with:
2626
files: "*.tar.gz"
2727
- name: On Build Failure
2828
if: steps.check_files.outputs.files_exists == 'false'
2929
run: |
3030
echo "Packaging FAILED" && exit 1
3131
- name: Release
32-
uses: softprops/action-gh-release@v1
32+
uses: softprops/action-gh-release@v2
3333
if: startsWith(github.ref, 'refs/tags/') && steps.check_files.outputs.files_exists == 'true'
3434
with:
3535
files: "*.tar.gz"

0 commit comments

Comments
 (0)