Skip to content

build(deps): bump symfony/console from 7.1.6 to 7.1.8 #1115

build(deps): bump symfony/console from 7.1.6 to 7.1.8

build(deps): bump symfony/console from 7.1.6 to 7.1.8 #1115

Workflow file for this run

---
name: CI
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
name: Run CI suite
env:
HOST_UID: 1001
HOST_GID: 121
steps:
- uses: actions/checkout@v4
- name: Get Composer Cache Directory
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache Composer Downloads
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-composer-
- name: Enable docker
run: make enable-docker
- name: Build the stack
run: make setup
- name: The PHP Security Checker
uses: symfonycorp/security-checker-action@v5
- name: Run tests
run: make test
- name: Run cs-fixer
run: make qa