Skip to content

Commit a3fc01f

Browse files
authored
Workflows
1 parent f9ddbc3 commit a3fc01f

File tree

7 files changed

+10
-310
lines changed

7 files changed

+10
-310
lines changed

.github/workflows/branch-cleanup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818

1919
steps:
20-
- uses: actions/checkout@v4.2.2
20+
- uses: actions/checkout@v4
2121
with:
2222
fetch-depth: 0
2323
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/continuous-integration.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-latest
2626
steps:
2727
- name: Checkout code
28-
uses: actions/checkout@v4.2.2
28+
uses: actions/checkout@v4
2929

3030
- name: Setup PHP
3131
uses: shivammathur/setup-php@v2
@@ -44,7 +44,7 @@ jobs:
4444
fi
4545
4646
- name: Setup Node.js
47-
uses: actions/setup-node@v4.4.0
47+
uses: actions/setup-node@v4
4848
with:
4949
node-version: '16'
5050
# Use conditional caching based on package-lock.json existence
@@ -100,7 +100,7 @@ jobs:
100100
needs: lint
101101
steps:
102102
- name: Checkout code
103-
uses: actions/checkout@v4.2.2
103+
uses: actions/checkout@v4
104104

105105
- name: Check for package-lock.json in build
106106
id: check-lockfile-build
@@ -113,7 +113,7 @@ jobs:
113113
fi
114114
115115
- name: Setup Node.js
116-
uses: actions/setup-node@v4.4.0
116+
uses: actions/setup-node@v4
117117
with:
118118
node-version: '16'
119119
# Use conditional caching based on package-lock.json existence
@@ -181,7 +181,7 @@ jobs:
181181
zip -r simple-wp-optimizer.zip simple-wp-optimizer
182182
183183
- name: Upload build artifact
184-
uses: actions/upload-artifact@v4.6.2
184+
uses: actions/upload-artifact@v4
185185
with:
186186
name: simple-wp-optimizer
187187
path: build/simple-wp-optimizer.zip

.github/workflows/issue-management.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
repo-token: ${{ secrets.GITHUB_TOKEN }}
2525
configuration-path: .github/labeler.yml
2626
sync-labels: false
27-
- uses: actions/stale@v9.1.0
27+
- uses: actions/stale@v9
2828
with:
2929
days-before-stale: 30
3030
days-before-close: 7

.github/workflows/php74-latest-wp-test.yml

Lines changed: 0 additions & 298 deletions
This file was deleted.

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- name: Checkout code
25-
uses: actions/checkout@v4.2.2
25+
uses: actions/checkout@v4
2626
with:
2727
fetch-depth: 0
2828

@@ -66,7 +66,7 @@ jobs:
6666
6767
- name: Create Release
6868
if: steps.check_release.outputs.exists == 'false'
69-
uses: softprops/action-gh-release@da05d552573ad5aba039eaac05058a918a7bf631
69+
uses: softprops/action-gh-release@v2
7070
with:
7171
tag_name: v${{ steps.get_version.outputs.version }}
7272
name: Release v${{ steps.get_version.outputs.version }}

.github/workflows/wp-tested-updater.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Checkout code
21-
uses: actions/checkout@v4.2.2
21+
uses: actions/checkout@v4
2222

2323
- name: WordPress version checker
2424
uses: skaut/wordpress-version-checker@v2.2.3

CHANGELOG.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1212
- Enabled automatic PR creation for WordPress compatibility updates with "automated" and "documentation" labels
1313
- Added PHPUnit test framework with GitHub Actions workflow for automated testing
1414
- Configured cross-version PHP testing (7.4-8.2) with multisite support
15-
- Fixed database creation issues in testing workflow for CI environment
16-
- Enhanced plugin loading in test environment for improved reliability
1715

1816
## [1.5.4] - 2025-05-04
1917
### Changed

0 commit comments

Comments
 (0)