Skip to content

Commit

Permalink
Lock ubuntu version down to 22.04
Browse files Browse the repository at this point in the history
GitHub Actions is rolling out ubuntu 24 which affects various actions.

actions/runner-images#10636
  • Loading branch information
lipemat committed Dec 18, 2024
1 parent 8f7ce61 commit ce42f76
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ on:
jobs:
create-release:
name: Create release for ${{ github.ref_name }}
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Create Release
uses: softprops/action-gh-release@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/js-unit-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ on:
jobs:
JS-Unit:
name: Run JS Unit tests
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout the plugin
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/php-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on:

jobs:
php-lint:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout the files
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/phpcs-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ on:
jobs:
phpcs:
name: PHPCS
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout the plugin
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/phpstan-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ on:
jobs:
phpstan:
name: PHPStan
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout the PRO and BASIC plugins
uses: lipemat/public-actions/checkout-plugins@version/1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/populate-caches-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ on:
jobs:
populate:
name: Populate all caches
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout this repository
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ on:
jobs:
publish:
name: Publish on npm.js
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout the repository
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wp-unit-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ on:

jobs:
wp-unit:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout WordPress Core
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ https://docs.github.com/en/actions/using-workflows/reusing-workflows
jobs:
populate:
name: Populate all caches
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Setup Node and PHP
uses: lipemat/public-actions/setup-dependencies@v1
Expand Down

0 comments on commit ce42f76

Please sign in to comment.