Skip to content

Commit c6b0032

Browse files
authored
[CI] Actions using GitHub runners should use latest Ubuntu (#17170)
We need to remove 20.04 because of actions/runner-images#11101, so just move everything to latest. This has no effect on our self-hosted runners. Nightly [here](https://github.com/intel/llvm/actions/runs/13525863179). Signed-off-by: Sarnie, Nick <nick.sarnie@intel.com>
1 parent 2e992dc commit c6b0032

8 files changed

+9
-9
lines changed

.github/workflows/sycl-aws.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ on:
2121

2222
jobs:
2323
aws:
24-
runs-on: ubuntu-20.04
24+
runs-on: ubuntu-latest
2525
environment: aws
2626
steps:
2727
- uses: actions/checkout@v4

.github/workflows/sycl-containers-igc-dev.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
build_and_push_images:
2323
if: github.repository == 'intel/llvm'
2424
name: Build and Push IGC Dev Docker Images
25-
runs-on: ubuntu-22.04
25+
runs-on: ubuntu-latest
2626
permissions:
2727
packages: write
2828
strategy:

.github/workflows/sycl-containers.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
build_and_push_images:
3030
if: github.repository == 'intel/llvm'
3131
name: Build and Push Docker Images
32-
runs-on: ubuntu-22.04
32+
runs-on: ubuntu-latest
3333
permissions:
3434
packages: write
3535
strategy:

.github/workflows/sycl-linux-precommit-aws.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
})
4646
4747
aws-start:
48-
runs-on: ubuntu-20.04
48+
runs-on: ubuntu-latest
4949
environment: aws
5050
steps:
5151
- uses: actions/checkout@v4
@@ -106,7 +106,7 @@ jobs:
106106
aws-stop:
107107
needs: [aws-start, e2e-cuda]
108108
if: always()
109-
runs-on: ubuntu-20.04
109+
runs-on: ubuntu-latest
110110
environment: aws
111111
steps:
112112
- uses: actions/checkout@v4

.github/workflows/sycl-stale-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
permissions:
1212
issues: write # for actions/stale to close stale issues
1313
pull-requests: write # for actions/stale to close stale PRs
14-
runs-on: ubuntu-20.04
14+
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/stale@v9
1717
with:

.github/workflows/sycl-sync-main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
sync:
1010
permissions:
1111
contents: write # for Git to git push
12-
runs-on: ubuntu-20.04
12+
runs-on: ubuntu-latest
1313
if: github.repository == 'intel/llvm'
1414
steps:
1515
- uses: actions/checkout@v4

.github/workflows/sycl-update-gpu-driver.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
update_driver_linux:
1212
permissions:
1313
contents: write # for Git to git push
14-
runs-on: ubuntu-20.04
14+
runs-on: ubuntu-latest
1515
if: github.repository == 'intel/llvm'
1616
steps:
1717
- uses: actions/checkout@v4

.github/workflows/sycl-update-igc-dev-driver.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
update_driver_linux:
1212
permissions:
1313
contents: write # for Git to git push
14-
runs-on: ubuntu-20.04
14+
runs-on: ubuntu-latest
1515
if: github.repository == 'intel/llvm'
1616
steps:
1717
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)