Skip to content

chore: Update composer packages #6

chore: Update composer packages

chore: Update composer packages #6

# Name of this GitHub Actions workflow.
name: outdated dependencies
on:
# Scan changed files in PRs (diff-aware scanning):
pull_request: {}
# Scan on-demand through GitHub Actions interface:
workflow_dispatch: {}
# Scan mainline branches and report all findings:
push:
branches: ["master", "main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
# Fetch project source with GitHub Actions Checkout.
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install
# Install deps
run: composer install
- name: Run composer outdated
run: composer outdated --direct --minor-only --strict