Skip to content

Commit

Permalink
Merge pull request #184 from PHPCSStandards/feature/ghactions-use-ubu…
Browse files Browse the repository at this point in the history
…ntu-latest

GH Actions: run linting against against ubuntu-latest
  • Loading branch information
jrfnl committed Jun 26, 2022
2 parents edde434 + e0cd4fb commit 04f4e8f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/linting.yaml
Expand Up @@ -14,7 +14,7 @@ concurrency:

jobs:
validate-composer:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Validate composer.json and composer.lock
Expand All @@ -23,7 +23,7 @@ jobs:
args: "composer validate --no-check-lock"

lint-json:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Lint json
Expand All @@ -32,21 +32,21 @@ jobs:
args: "find . -not -path './.git/*' -name '*.json' -type f -exec jsonlint --quiet {} ;"

yamllint:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Check yaml for issues
uses: pipeline-components/yamllint@master

php-codesniffer:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Check php for code style and php cross-version compatibility issues
uses: pipeline-components/php-codesniffer@master

lint-remark:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Check markdown
Expand Down

0 comments on commit 04f4e8f

Please sign in to comment.