Skip to content

Commit ff7e684

Browse files
committed
Specify Ubuntu 22.04 as the runner version for build and deploy jobs
fixes: https://github.com/ruby/lrama/actions/runs/17962462976/job/51088473068
1 parent 37da43e commit ff7e684

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/gh-pages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ concurrency:
1616

1717
jobs:
1818
build:
19-
runs-on: ubuntu-latest
19+
runs-on: ubuntu-22.04 # Explicitly specifies an older compatible version of Ubuntu as the runner, for which pre-built Ruby 3.4 is available.
2020
if: ${{ github.repository == 'ruby/lrama' && !startsWith(github.event_name, 'pull') }}
2121
steps:
2222
- name: Checkout
@@ -38,7 +38,7 @@ jobs:
3838
environment:
3939
name: github-pages
4040
url: ${{ steps.deployment.outputs.page_url }}
41-
runs-on: ubuntu-latest
41+
runs-on: ubuntu-22.04
4242
needs: build
4343
steps:
4444
- name: Deploy to GitHub Pages

0 commit comments

Comments
 (0)