Skip to content

Commit a2b1c2d

Browse files
ci(all): Pin Ubuntu version (#2980)
* pin ubuntu version * fat fingered
1 parent c1cde2d commit a2b1c2d

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/auto_add_pr_to_miletone.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@ on:
1010
jobs:
1111
add_to_milestone:
1212
if: github.event.pull_request.merged == true && startsWith(github.event.pull_request.title, '[Version Bump]') == false
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-24.04
1414
permissions:
1515
contents: read
1616
pull-requests: write # need to modify existing PR
1717
issues: write # need to potentially create a new milestone
1818

1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v2
21+
uses: actions/checkout@v4
2222

23-
- uses: actions/setup-dotnet@v1
23+
- uses: actions/setup-dotnet@v4
2424
with:
2525
dotnet-version: '7.0.101'
2626

.github/workflows/auto_check_snapshots.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ on:
55

66
jobs:
77
check-snapshots:
8-
runs-on: ubuntu-latest
8+
runs-on: ubuntu-24.04
99
permissions:
1010
contents: read
1111
pull-requests: write # need to add a comment to a PR
1212

1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v4
1616
with:
1717
fetch-depth: 0
1818

19-
- uses: actions/setup-dotnet@v1
19+
- uses: actions/setup-dotnet@v4
2020
with:
2121
dotnet-version: '7.0.101'
2222

.github/workflows/auto_label_prs.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@ on:
66
jobs:
77
add-labels:
88

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

1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v2
17+
uses: actions/checkout@v4
1818

19-
- uses: actions/setup-dotnet@v1
19+
- uses: actions/setup-dotnet@v4
2020
with:
2121
dotnet-version: '7.0.101'
2222

.github/workflows/prof_asan.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
jobs:
77
prof-asan:
8-
runs-on: ubuntu-latest
8+
runs-on: ubuntu-24.04
99
strategy:
1010
matrix:
1111
php-version: [8.3, 8.4]

.github/workflows/prof_correctness.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
prof-correctness:
10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-24.04
1111
strategy:
1212
matrix:
1313
php-version: [8.0, 8.1, 8.2, 8.3, 8.4]

0 commit comments

Comments
 (0)