Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
fi

- name: Setup Node.js
uses: actions/setup-node@v5
uses: actions/setup-node@v6
with:
node-version: '16'
# Use conditional caching based on package-lock.json existence
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
fi

- name: Setup Node.js
uses: actions/setup-node@v5
uses: actions/setup-node@v6
with:
node-version: '16'
# Use conditional caching based on package-lock.json existence
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gemini-code-assistant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
fetch-depth: 0

- name: Setup Node.js for Google AI SDK
uses: actions/setup-node@v5
uses: actions/setup-node@v6
with:
node-version: '20'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gemini-issue-assistant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
fetch-depth: 0

- name: Set up Node.js
uses: actions/setup-node@v5
uses: actions/setup-node@v6
with:
node-version: '20'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/new-issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
runs-on: ubuntu-latest
steps:
- name: Post guidance comment
uses: peter-evans/create-or-update-comment@v4
uses: peter-evans/create-or-update-comment@v5

Check warning on line 21 in .github/workflows/new-issue.yml

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

.github/workflows/new-issue.yml#L21

An action sourced from a third-party repository on GitHub is not pinned to a full length commit SHA. Pinning an action to a full length commit SHA is currently the only way to use an action as an immutable release.
with:
issue-number: ${{ github.event.issue.number }}
body: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/new-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
pull-requests: write
steps:
- name: Post guidance comment on new PR
uses: peter-evans/create-or-update-comment@v4
uses: peter-evans/create-or-update-comment@v5

Check warning on line 20 in .github/workflows/new-pull-request.yml

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

.github/workflows/new-pull-request.yml#L20

An action sourced from a third-party repository on GitHub is not pinned to a full length commit SHA. Pinning an action to a full length commit SHA is currently the only way to use an action as an immutable release.
with:
issue-number: ${{ github.event.pull_request.number }}
body: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wp-compatibility-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
echo "✅ Cleanup complete"

- name: WordPress Plugin Check
uses: WordPress/plugin-check-action@v1.1.2
uses: WordPress/plugin-check-action@v1.1.3

Check warning on line 78 in .github/workflows/wp-compatibility-test.yml

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

.github/workflows/wp-compatibility-test.yml#L78

An action sourced from a third-party repository on GitHub is not pinned to a full length commit SHA. Pinning an action to a full length commit SHA is currently the only way to use an action as an immutable release.
with:
# Build directory - using repository root
build-dir: './'
Expand Down
Loading