Skip to content

Commit

Permalink
Use Ubuntu 22.04 in GH workflow php-lint-test
Browse files Browse the repository at this point in the history
  • Loading branch information
annemirasol committed Dec 16, 2024
1 parent 3ec42fe commit a02695f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/php-lint-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:
jobs:
phpcs:
name: PHP Code Sniffer
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
# clone the repository
- uses: actions/checkout@v2
Expand All @@ -32,7 +32,7 @@ jobs:

lint:
name: PHP Linting
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
# clone the repository
- uses: actions/checkout@v2
Expand All @@ -46,7 +46,7 @@ jobs:

test:
name: PHP testing
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
fail-fast: false
max-parallel: 10
Expand All @@ -71,7 +71,7 @@ jobs:
bash bin/run-ci-tests.sh
compatibility-oldest:
name: Run unit tests on Oldest supported version
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
env:
WC_VERSION: 7.7.0 # the min supported version as per L-2 policy
WP_VERSION: 'latest'
Expand All @@ -92,7 +92,7 @@ jobs:
- run: bash bin/run-ci-tests.sh
compatibility-beta:
name: Run unit tests on beta WC
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
env:
WC_VERSION: 'beta'
WP_VERSION: 'latest'
Expand Down

0 comments on commit a02695f

Please sign in to comment.