From 317f6b55b0a68a192ea29922f80598498873a4fd Mon Sep 17 00:00:00 2001 From: Florian Engelhardt Date: Tue, 3 Dec 2024 10:47:46 +0100 Subject: [PATCH 1/2] pin ubuntu version --- .github/workflows/auto_add_pr_to_miletone.yml | 6 +++--- .github/workflows/auto_check_snapshots.yml | 6 +++--- .github/workflows/auto_label_prs.yml | 6 +++--- .github/workflows/prof_asan.yml | 2 +- .github/workflows/prof_correctness.yml | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/auto_add_pr_to_miletone.yml b/.github/workflows/auto_add_pr_to_miletone.yml index 357c9b1425..417e01bdc7 100644 --- a/.github/workflows/auto_add_pr_to_miletone.yml +++ b/.github/workflows/auto_add_pr_to_miletone.yml @@ -10,7 +10,7 @@ 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 permissions: contents: read pull-requests: write # need to modify existing PR @@ -18,9 +18,9 @@ jobs: 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' diff --git a/.github/workflows/auto_check_snapshots.yml b/.github/workflows/auto_check_snapshots.yml index e649dc7b47..dddb20b567 100644 --- a/.github/workflows/auto_check_snapshots.yml +++ b/.github/workflows/auto_check_snapshots.yml @@ -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' diff --git a/.github/workflows/auto_label_prs.yml b/.github/workflows/auto_label_prs.yml index 7b5a4e5d50..4e6f37c929 100644 --- a/.github/workflows/auto_label_prs.yml +++ b/.github/workflows/auto_label_prs.yml @@ -6,7 +6,7 @@ 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...) @@ -14,9 +14,9 @@ jobs: 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' diff --git a/.github/workflows/prof_asan.yml b/.github/workflows/prof_asan.yml index 3d85001f6e..e42dccfa04 100644 --- a/.github/workflows/prof_asan.yml +++ b/.github/workflows/prof_asan.yml @@ -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] diff --git a/.github/workflows/prof_correctness.yml b/.github/workflows/prof_correctness.yml index 5472383332..d3744781c6 100644 --- a/.github/workflows/prof_correctness.yml +++ b/.github/workflows/prof_correctness.yml @@ -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] From 1fece4766e9f6ef77285403d68246f27fbf813b3 Mon Sep 17 00:00:00 2001 From: Florian Engelhardt Date: Tue, 3 Dec 2024 11:01:33 +0100 Subject: [PATCH 2/2] fat fingered --- .github/workflows/auto_add_pr_to_miletone.yml | 2 +- .github/workflows/auto_check_snapshots.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/auto_add_pr_to_miletone.yml b/.github/workflows/auto_add_pr_to_miletone.yml index 417e01bdc7..16fbc82021 100644 --- a/.github/workflows/auto_add_pr_to_miletone.yml +++ b/.github/workflows/auto_add_pr_to_miletone.yml @@ -10,7 +10,7 @@ on: jobs: add_to_milestone: if: github.event.pull_request.merged == true && startsWith(github.event.pull_request.title, '[Version Bump]') == false - runs-on: ubuntu-24.02 + runs-on: ubuntu-24.04 permissions: contents: read pull-requests: write # need to modify existing PR diff --git a/.github/workflows/auto_check_snapshots.yml b/.github/workflows/auto_check_snapshots.yml index dddb20b567..3e4028264c 100644 --- a/.github/workflows/auto_check_snapshots.yml +++ b/.github/workflows/auto_check_snapshots.yml @@ -5,7 +5,7 @@ on: jobs: check-snapshots: - runs-on: ubuntu-24.02 + runs-on: ubuntu-24.04 permissions: contents: read pull-requests: write # need to add a comment to a PR