Skip to content

Commit 9141770

Browse files
committed
Add svn to deployment actions.
1 parent 0d953ba commit 9141770

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
cs_and_tests:
77
strategy:
88
matrix:
9-
os: [ ubuntu-24.04 ]
9+
os: [ ubuntu-latest ]
1010
php-version: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ]
1111

1212
env:

.github/workflows/create-zip.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
tag:
55
name: New zip file
66

7-
runs-on: ubuntu-24.04
7+
runs-on: ubuntu-latest
88

99
env:
1010
SLUG: "hcaptcha-for-forms-and-more"
@@ -14,7 +14,7 @@ jobs:
1414
uses: actions/checkout@v4
1515

1616
- name: Install dependencies with caching
17-
uses: kagg-design/composer-install@v2
17+
uses: ramsey/composer-install@v3
1818
with:
1919
composer-options: "--no-dev --optimize-autoloader --classmap-authoritative"
2020

.github/workflows/deploy-readme-assets-to-wp-org.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ jobs:
1111
- name: Checkout code
1212
uses: actions/checkout@v4
1313

14+
- name: Install SVN
15+
run: sudo apt-get update && sudo apt-get install -y subversion
16+
1417
- name: WordPress.org plugin asset/readme update
1518
uses: 10up/action-wordpress-plugin-asset-update@stable
1619
env:

.github/workflows/deploy-to-wp-org.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,11 @@ jobs:
1515
- name: Checkout code
1616
uses: actions/checkout@v4
1717

18+
- name: Install SVN
19+
run: sudo apt-get update && sudo apt-get install -y subversion
20+
1821
- name: Install dependencies with caching
19-
uses: kagg-design/composer-install@v2
22+
uses: ramsey/composer-install@v3
2023
with:
2124
composer-options: "--no-dev --optimize-autoloader --classmap-authoritative"
2225

0 commit comments

Comments
 (0)