Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Lint

Check warning on line 1 in .github/workflows/lint.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

lint.yml:1: overly broad permissions: default permissions used due to no permissions: block

on:
push:
Expand All @@ -6,29 +6,29 @@
pull_request:

jobs:
styles:

Check warning on line 9 in .github/workflows/lint.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

lint.yml:9: overly broad permissions: default permissions used due to no permissions: block
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

Check failure on line 12 in .github/workflows/lint.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 12 in .github/workflows/lint.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

lint.yml:12: unpinned action reference: action is not pinned to a hash (required by blanket policy)
- name: Install PHP
uses: shivammathur/setup-php@v2

Check failure on line 14 in .github/workflows/lint.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 14 in .github/workflows/lint.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

lint.yml:14: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
php-version: '8.2'

- name: Run Script
run: testing/run_cs_check.sh

staticanalysis:

Check warning on line 21 in .github/workflows/lint.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

lint.yml:21: overly broad permissions: default permissions used due to no permissions: block
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

Check failure on line 24 in .github/workflows/lint.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 24 in .github/workflows/lint.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

lint.yml:24: unpinned action reference: action is not pinned to a hash (required by blanket policy)
- name: Install PHP
uses: shivammathur/setup-php@v2

Check failure on line 26 in .github/workflows/lint.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 26 in .github/workflows/lint.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

lint.yml:26: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
php-version: '8.2'
- name: Get changed files
id: changedFiles
uses: tj-actions/changed-files@v47

Check failure on line 31 in .github/workflows/lint.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 31 in .github/workflows/lint.yml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

lint.yml:31: unpinned action reference: action is not pinned to a hash (required by blanket policy)
- name: Run Script
run: |
composer install -d testing/
Expand Down
Loading