-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Include PHP 8.3 in build matrix (#112)
* Include PHP 8.3 in build matrix * Bump deps in actions * Upgrade default php version * Switch to php/setup-php-sdk * Keep actions up to date --------- Co-authored-by: Brett McBride <[email protected]>
- Loading branch information
1 parent
015dc8e
commit dce7d0b
Showing
3 changed files
with
13 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
php: ['8.0', '8.1', '8.2'] | ||
php: ['8.0', '8.1', '8.2', '8.3'] | ||
os: ['debian', 'alpine'] | ||
container: | ||
image: ghcr.io/open-telemetry/opentelemetry-php-instrumentation/php:${{ matrix.php }}-${{ matrix.os }}-debug | ||
|
@@ -35,7 +35,7 @@ jobs: | |
pecl-package: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: php:8.2-cli | ||
image: php:8.3-cli | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
|
@@ -58,13 +58,13 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
php: ['8.0', '8.1', '8.2'] | ||
php: ['8.0', '8.1', '8.2', '8.3'] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Install PHP ${{ matrix.php }} | ||
uses: cmb69/[email protected] | ||
id: setup-php-sdk | ||
uses: php/[email protected] | ||
with: | ||
version: ${{ matrix.php }} | ||
arch: x64 | ||
|
@@ -117,4 +117,4 @@ jobs: | |
with: | ||
generate_release_notes: true | ||
draft: true | ||
files: "**/binaries/*.zip" | ||
files: "**/binaries/*.zip" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters