Skip to content

Unpushed commits (local main ahead of origin/main)#88

Merged
StanBarrows merged 2 commits into
mainfrom
feature-dependency-bump
Apr 3, 2026
Merged

Unpushed commits (local main ahead of origin/main)#88
StanBarrows merged 2 commits into
mainfrom
feature-dependency-bump

Conversation

@StanBarrows
Copy link
Copy Markdown
Contributor

Local main was 2 commit(s) ahead of origin/main. Opened from update-opensource-active.sh for review.

Copilot AI review requested due to automatic review settings March 26, 2026 07:16
Copy link
Copy Markdown

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Adds a GitHub Actions workflow to run Composer vulnerability audits on dependency changes and on a weekly schedule.

Changes:

  • Introduces a new Composer audit workflow triggered on composer.json / composer.lock changes, schedule, and manual dispatch.
  • Sets up PHP 8.4 and runs a dependency resolution step followed by composer audit.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment on lines +36 to +37
composer update --no-interaction --no-ansi
composer audit
Copy link

Copilot AI Mar 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

composer update in an audit workflow will resolve new dependency versions and can hide vulnerabilities that exist in the committed composer.lock (the dependencies users/CI actually install). For auditing, prefer auditing the lock file directly (e.g., composer audit --locked) or run composer install and then composer audit, instead of updating dependencies.

Suggested change
composer update --no-interaction --no-ansi
composer audit
composer install --no-interaction --no-ansi --no-progress --prefer-dist
composer audit --locked

Copilot uses AI. Check for mistakes.
@StanBarrows StanBarrows merged commit 5abe662 into main Apr 3, 2026
14 checks passed
@StanBarrows StanBarrows deleted the feature-dependency-bump branch April 3, 2026 12:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants