Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci(all): Pin Ubuntu version #2980

Merged
merged 2 commits into from
Dec 3, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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/auto_add_pr_to_miletone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ on:
jobs:
add_to_milestone:
if: github.event.pull_request.merged == true && startsWith(github.event.pull_request.title, '[Version Bump]') == false
runs-on: ubuntu-latest
runs-on: ubuntu-24.02
iamluc marked this conversation as resolved.
Show resolved Hide resolved
permissions:
contents: read
pull-requests: write # need to modify existing PR
issues: write # need to potentially create a new milestone

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- uses: actions/setup-dotnet@v1
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '7.0.101'

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/auto_check_snapshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,18 @@ on:

jobs:
check-snapshots:
runs-on: ubuntu-latest
runs-on: ubuntu-24.02
permissions:
contents: read
pull-requests: write # need to add a comment to a PR

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: actions/setup-dotnet@v1
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '7.0.101'

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/auto_label_prs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@ on:
jobs:
add-labels:

runs-on: ubuntu-latest
runs-on: ubuntu-24.04
permissions:
contents: read
issues: write # Update labels on PRs (might not be necessary, but we call the UpdateIssue API so...)
pull-requests: write # Update labels on PRs

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- uses: actions/setup-dotnet@v1
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '7.0.101'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prof_asan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
prof-asan:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
strategy:
matrix:
php-version: [8.3, 8.4]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prof_correctness.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
prof-correctness:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
strategy:
matrix:
php-version: [8.0, 8.1, 8.2, 8.3, 8.4]
Expand Down
Loading