Skip to content
Closed
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
8 changes: 4 additions & 4 deletions .github/workflows/auto-review.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
name: Lint CS
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
name: Composer Validate
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand All @@ -76,7 +76,7 @@ jobs:
name: Box Validate
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand All @@ -98,7 +98,7 @@ jobs:
name: AutoReview Tests
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/benchmark.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
name: Benchmark main branch
steps:
- name: Checkout main branch
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: main
fetch-depth: 0
Expand All @@ -43,7 +43,7 @@ jobs:
- name: Run PHPBench
run: make phpbench_main

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v6
name: Upload the Benchmark results
with:
name: bench-main-result
Expand All @@ -54,7 +54,7 @@ jobs:
name: Benchmark PR
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
# needs: main-bench-test
# steps:
# - name: Checkout
# uses: actions/checkout@v5
# uses: actions/checkout@v6
# with:
# fetch-depth: 0
#
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
image-tag: ghcr.io/box-project/box_php82_xdebug
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ jobs:
timeout-minutes: 1
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Check Markdown formatting
uses: DavidAnson/markdownlint-cli2-action@v20.0.0
uses: DavidAnson/markdownlint-cli2-action@v22.0.0
with:
globs: "*.md|doc/**/*.md"

Expand All @@ -34,17 +34,17 @@ jobs:
timeout-minutes: 1
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Restore lychee cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: .lycheecache
key: cache-lychee-${{ github.sha }}
restore-keys: cache-lychee-

- name: Run Lychee
uses: lycheeverse/lychee-action@v2.6.1
uses: lycheeverse/lychee-action@v2.7.0
with:
# To keep in sync with Makefile#lychee
args: "--no-progress '*.md' 'doc/**/*.md' --cache --max-cache-age 1d ."
Expand All @@ -58,7 +58,7 @@ jobs:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Setup Python
uses: actions/setup-python@v6
Expand All @@ -74,7 +74,7 @@ jobs:
- name: Rebuild website
run: make _website_build

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v6
name: Upload the docs artifact
with:
name: docs-website
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
needs:
- build
steps:
- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v7
with:
name: docs-website
path: dist/website
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
tools: 'composer:2.4'
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
- _e2e_php_settings_checker_memory_limit_higher
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
name: Build PHAR
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
--output bin/box.phar.asc \
bin/box.phar

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v6
name: Upload the PHAR artifact
with:
name: box-phar
Expand All @@ -89,7 +89,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v7
with:
name: box-phar
path: .
Expand All @@ -111,7 +111,7 @@ jobs:
if: github.event_name == 'release'
steps:
- name: Update Homebrew formula
uses: dawidd6/action-homebrew-bump-formula@v5
uses: dawidd6/action-homebrew-bump-formula@v7
with:
token: ${{ secrets.BOX_HOMEBREW_TAP_TOKEN }}
tap: box-project/box
Expand All @@ -127,14 +127,14 @@ jobs:
- build-phar
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'

- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v7
with:
name: box-phar
path: .
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/requirement-checker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
name: Lint CS
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
name: AutoReview Tests
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down Expand Up @@ -217,7 +217,7 @@ jobs:
docker-image: ghcr.io/box-project/box_php82
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand Down Expand Up @@ -295,7 +295,7 @@ jobs:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ github.head_ref }}
fetch-depth: '0' # Ensures the tags are fetched
Expand Down Expand Up @@ -355,7 +355,7 @@ jobs:

- name: Create Pull Request
if: env.requirement_checker_changed == 'true'
uses: peter-evans/create-pull-request@v7
uses: peter-evans/create-pull-request@v8
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: build/update-requirement-checker
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/security.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ jobs:
name: Audit Dependencies
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Cache the vulnerability database
uses: actions/cache@v4
uses: actions/cache@v5
id: cache-db
with:
path: ~/.symfony/cache
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
if: github.event_name == 'pull_request' || github.event_name == 'push'
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
Loading