Skip to content

Commit

Permalink
TESTING Ubuntu 24-04
Browse files Browse the repository at this point in the history
  • Loading branch information
jrfnl committed Dec 11, 2024
1 parent 4b8a349 commit f04726e
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ concurrency:
jobs:
phpcs: #----------------------------------------------------------------------
name: 'PHPCS'
runs-on: ubuntu-latest
runs-on: 'ubuntu-24.04'

steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ concurrency:

jobs:
lint: #----------------------------------------------------------------------
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/quicktest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
#### QUICK TEST STAGE ####
# Runs the tests against select PHP versions for pushes to arbitrary branches.
quicktest:
runs-on: ubuntu-latest
runs-on: 'ubuntu-24.04'

strategy:
matrix:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: Test

on:
push:
branches:
- stable
# branches:
# - stable
pull_request:
# Allow manually triggering the workflow.
workflow_dispatch:
Expand All @@ -17,7 +17,7 @@ concurrency:
jobs:
#### TEST STAGE ####
test:
runs-on: ubuntu-latest
runs-on: 'ubuntu-24.04'

strategy:
# Keys:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/update-cacert.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ on:
# Run on every push to `stable` and `develop`.
# Not using path selection here as it appears only the files in the last commit from the push are looked at.
push:
branches:
- 'stable'
- 'develop'
# branches:
# - 'stable'
# - 'develop'
# And whenever this workflow is updated or a PR attempts to update the certificate files.
pull_request:
paths:
Expand All @@ -31,7 +31,7 @@ jobs:
# Don't run the cron job on forks.
if: ${{ github.event_name != 'schedule' || github.repository == 'WordPress/Requests' }}

runs-on: ubuntu-latest
runs-on: 'ubuntu-24.04'
steps:
- name: Determine branches to use
id: branches
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/update-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: Build website
on:
# Trigger the workflow whenever a new tag is created.
push:
tags:
- '**'
# tags:
# - '**'
# And whenever this workflow or one of the associated scripts is updated.
pull_request:
branches-ignore:
Expand All @@ -31,7 +31,7 @@ jobs:
# Don't run on forks.
if: github.repository == 'WordPress/Requests'

runs-on: ubuntu-latest
runs-on: 'ubuntu-24.04'
steps:
# By default use the `stable` branch as the published docs should always
# reflect the latest release.
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
# Don't run on forks.
if: github.repository == 'WordPress/Requests'

runs-on: ubuntu-latest
runs-on: 'ubuntu-24.04'
steps:
# PRs based on the "pull request" event trigger will contain changes from the
# current `develop` branch, so should not be published as the website should
Expand Down

0 comments on commit f04726e

Please sign in to comment.