Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

steps:
- name: "Checkout"
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: "Set-up PHP"
uses: shivammathur/setup-php@v2
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:

steps:
- name: "Checkout"
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: "Create cache dir"
run: mkdir .cache
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
path: 'docs'

Expand Down
2 changes: 1 addition & 1 deletion setup/bundles.rst
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ as a starting point for your own GitHub CI configuration:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.stability == 'dev' }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2
Expand Down
2 changes: 1 addition & 1 deletion testing/end_to_end.rst
Original file line number Diff line number Diff line change
Expand Up @@ -733,7 +733,7 @@ Here is a minimal ``.github/workflows/panther.yaml`` file to run Panther tests:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: "ramsey/composer-install@v2"

- name: Install dependencies
Expand Down