Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/code-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ on: [pull_request]
jobs:
codechecks:
name: PHP_CodeSniffer, JSHint
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout module
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup PHP
uses: shivammathur/setup-php@v2
Expand All @@ -20,7 +20,7 @@ jobs:
# The checkout action refuses to put it outside, so we have to do it in
# two steps.
- name: Checkout coding standard
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: backdrop-ops/phpcs
ref: 1.2.0
Expand Down