Skip to content

Commit

Permalink
Update GHA to actions/checkout@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
TimWolla committed Sep 5, 2023
1 parent 03c4802 commit ec59ba3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/integrate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,20 @@ jobs:

steps:
- name: "Checkout php/doc-${{ matrix.language }}"
uses: "actions/checkout@v3"
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@v3"
uses: "actions/checkout@v4"
with:
path: "en"
repository: "php/doc-en"

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

1 comment on commit ec59ba3

@mumumu
Copy link
Member

@mumumu mumumu commented on ec59ba3 Sep 5, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@TimWolla Thank you!

Please sign in to comment.