Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
id-token: write

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Create site from Readme
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/code-intelligence.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
extensions:
fileinfo

- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Cache Composer packages
id: composer-cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
name: Prepare a new release

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }}
ref: stable
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
id-token: write

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

# Install the cosign tool
# https://github.com/sigstore/cosign-installer
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: Merge stable branch into master

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }}
ref: master
Expand All @@ -37,7 +37,7 @@ jobs:
contents: write

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }}
ref: stable
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
extensions:
fileinfo

- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Cache Composer packages
id: composer-cache
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
php-version: ${{ matrix.php }}
extensions: fileinfo

- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Validate composer.json and composer.lock
run: composer validate --strict
Expand All @@ -117,7 +117,7 @@ jobs:
name: Build standalone executable

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Cache Composer packages
id: composer-cache
Expand Down Expand Up @@ -171,7 +171,7 @@ jobs:
php-version: ${{ matrix.php }}
extensions: fileinfo

- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
path: ./source

Expand Down Expand Up @@ -291,7 +291,7 @@ jobs:
run: sudo mv hyde /usr/local/bin/hyde && chmod +x /usr/local/bin/hyde

- name: Checkout Assert.php
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
sparse-checkout: |
tests/System/bin/Assert.php
Expand Down Expand Up @@ -343,7 +343,7 @@ jobs:
run: sudo mv hyde /usr/local/bin/hyde && chmod +x /usr/local/bin/hyde

- name: Checkout Assert.php
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
sparse-checkout: |
tests/System/bin/Assert.php
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/traffic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
ref: traffic

Expand Down
Loading