-
Notifications
You must be signed in to change notification settings - Fork 0
Unpushed commits (local main ahead of origin/main) #45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
3684f33
90ac410
020886b
c753d49
c631099
a8e88ed
39d27ee
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| @@ -1,25 +1,42 @@ | ||||||||||
| name: PHPStan | ||||||||||
|
|
||||||||||
| on: [push] | ||||||||||
| on: | ||||||||||
| push: | ||||||||||
| paths: | ||||||||||
| - '**/*.php' | ||||||||||
| - 'phpstan.neon.dist' | ||||||||||
| - 'phpstan-baseline.neon' | ||||||||||
| - 'composer.json' | ||||||||||
| - 'composer.lock' | ||||||||||
| pull_request: | ||||||||||
| paths: | ||||||||||
| - '**/*.php' | ||||||||||
| - 'phpstan.neon.dist' | ||||||||||
| - 'phpstan-baseline.neon' | ||||||||||
| - 'composer.json' | ||||||||||
| - 'composer.lock' | ||||||||||
| workflow_dispatch: | ||||||||||
|
|
||||||||||
| concurrency: | ||||||||||
| group: ${{ github.workflow }}-${{ github.ref }} | ||||||||||
| cancel-in-progress: true | ||||||||||
|
|
||||||||||
| jobs: | ||||||||||
| phpstan: | ||||||||||
| name: phpstan | ||||||||||
| runs-on: ubuntu-latest | ||||||||||
| timeout-minutes: 5 | ||||||||||
| steps: | ||||||||||
| - uses: actions/checkout@v4 | ||||||||||
| - uses: actions/checkout@v6.0.2 | ||||||||||
|
|
||||||||||
| - name: Setup PHP | ||||||||||
| uses: shivammathur/setup-php@v2 | ||||||||||
| uses: shivammathur/setup-php@2.37.0 | ||||||||||
| with: | ||||||||||
| php-version: '8.4' | ||||||||||
| coverage: none | ||||||||||
|
|
||||||||||
|
||||||||||
| - name: Configure Nova auth for Composer | |
| run: composer config http-basic.nova.laravel.com "${{ secrets.NOVA_USERNAME }}" "${{ secrets.NOVA_PASSWORD }}" |
Copilot
AI
Mar 21, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The action refs here drop the usual v-prefixed tag format used elsewhere in the repo (e.g. shivammathur/setup-php@v2). If these tags are meant to be version tags, verify they exist and consider switching to the consistent tag naming (@v2.x.y / @v4.x.y) to avoid pointing at an unintended or non-existent ref.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,12 +10,13 @@ jobs: | |
| release: | ||
| name: Release | ||
| runs-on: ubuntu-latest | ||
| timeout-minutes: 10 | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: actions/checkout@v6.0.2 | ||
| with: | ||
| fetch-depth: '0' | ||
| - name: Bump version and push tag | ||
| uses: anothrNick/github-tag-action@master | ||
| uses: anothrNick/github-tag-action@1.75.0 | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }} | ||
| WITH_V: true | ||
|
Comment on lines
18
to
22
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
actions/checkoutis now pinned tov6.0.2here (and in some other workflows), but.github/workflows/run-tests.ymlstill usesactions/checkout@v4. Consider standardizing on a single pinned version across workflows to reduce drift and unexpected differences between CI jobs.