summaryrefslogtreecommitdiffstats
path: root/.github/workflows/lint-php.yml
diff options
context:
space:
mode:
authorLouis <6653109+artonge@users.noreply.github.com>2023-01-17 11:22:53 +0100
committerGitHub <noreply@github.com>2023-01-17 11:22:53 +0100
commita5bcecb0c7e8d4fb2a9f4bf16973614bff515edd (patch)
tree6cd25b5e876d558dce6f7bbf07425639ee930923 /.github/workflows/lint-php.yml
parentf72667819eafd7662099a6adeb4bec0358f22c95 (diff)
parentc18c4a2a26054fdcbe8e5eee3cb8d5ebc51c68b5 (diff)
Merge pull request #1582 from nextcloud/update-master-php-testing-versions
chore(CI): Update master php testing versions and workflow templates
Diffstat (limited to '.github/workflows/lint-php.yml')
-rw-r--r--.github/workflows/lint-php.yml10
1 files changed, 6 insertions, 4 deletions
diff --git a/.github/workflows/lint-php.yml b/.github/workflows/lint-php.yml
index 62476c90..54580af5 100644
--- a/.github/workflows/lint-php.yml
+++ b/.github/workflows/lint-php.yml
@@ -16,7 +16,7 @@ on:
permissions:
contents: read
-concurrency:
+concurrency:
group: lint-php-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
@@ -25,19 +25,21 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- php-versions: ["7.4", "8.0", "8.1"]
+ php-versions: [ "7.4", "8.0", "8.1", "8.2" ]
name: php-lint
steps:
- name: Checkout
- uses: actions/checkout@v3
+ uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3
- name: Set up php ${{ matrix.php-versions }}
- uses: shivammathur/setup-php@v2
+ uses: shivammathur/setup-php@1a18b2267f80291a81ca1d33e7c851fe09e7dfc4 # v2
with:
php-version: ${{ matrix.php-versions }}
coverage: none
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Lint
run: composer run lint