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
2 changes: 1 addition & 1 deletion .github/workflows/branch-cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
needs: lint
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Check for package-lock.json in build
id: check-lockfile-build
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 @@ -27,7 +27,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

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 @@ -15,7 +15,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/wp-compatibility-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
# Always fetch the latest commit, disable any caching
fetch-depth: 0
Expand Down Expand Up @@ -69,7 +69,7 @@
echo "✅ Cleanup complete"

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

Check warning on line 72 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#L72

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 Expand Up @@ -119,7 +119,7 @@
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Setup PHP 8.3
uses: shivammathur/setup-php@v2
Expand Down Expand Up @@ -174,7 +174,7 @@
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Setup PHP 8.3
uses: shivammathur/setup-php@v2
Expand Down Expand Up @@ -322,7 +322,7 @@
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
# Always fetch the latest commit, disable any caching
fetch-depth: 0
Expand Down Expand Up @@ -383,7 +383,7 @@
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Setup PHP 8.3
uses: shivammathur/setup-php@v2
Expand Down Expand Up @@ -448,7 +448,7 @@
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Setup PHP 8.3
uses: shivammathur/setup-php@v2
Expand Down Expand Up @@ -534,7 +534,7 @@
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
# Always fetch the latest commit, disable any caching
fetch-depth: 0
Expand Down Expand Up @@ -602,7 +602,7 @@

steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Setup PHP ${{ matrix.php-version }}
uses: shivammathur/setup-php@v2
Expand Down Expand Up @@ -850,7 +850,7 @@

- name: Ensure repository files available after failure
if: ${{ failure() }}
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wp-tested-updater.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: WordPress version checker
uses: skaut/wordpress-version-checker@v2.2.3
Expand Down
Loading