Skip to content

Commit

Permalink
update workflow integrate yaml ubuntu + checkout v4 with node (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilDaiguille authored Feb 23, 2025
1 parent 6ab67a2 commit f85dbf8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/integrate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
build:
name: "Build"

runs-on: "ubuntu-20.04"
runs-on: "ubuntu-22.04"

strategy:
matrix:
Expand All @@ -21,23 +21,23 @@ jobs:

steps:
- name: "Checkout php/doc-${{ matrix.language }}"
uses: "actions/checkout@v2"
uses: "actions/checkout@v4"
with:
path: "${{ matrix.language }}"
repository: "php/doc-${{ matrix.language }}"

- name: "Checkout php/doc-en as fallback"
if: "matrix.language != 'en'"
uses: "actions/checkout@v2"
uses: "actions/checkout@v4"
with:
path: "en"
repository: "php/doc-en"

- name: "Checkout php/doc-base"
uses: "actions/checkout@v2"
uses: "actions/checkout@v4"
with:
path: "doc-base"
repository: "php/doc-base"

- name: "Build documentation for ${{ matrix.language }}"
run: "php8.0 doc-base/configure.php --disable-libxml-check --enable-xml-details --redirect-stderr-to-stdout --with-lang=${{ matrix.language }}"
run: "php8.1 doc-base/configure.php --disable-libxml-check --enable-xml-details --redirect-stderr-to-stdout --with-lang=${{ matrix.language }}"

0 comments on commit f85dbf8

Please sign in to comment.