Skip to content

Commit 201c96b

Browse files
committed
pin runner to ubuntu 22.04
1 parent 9239574 commit 201c96b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/get_data_lint_files_deploy.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
pre_job:
1111
# continue-on-error: true # Uncomment once integration is finished
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-22.04
1313
# Map a step output to a job output
1414
outputs:
1515
should_skip: ${{ steps.skip_check.outputs.should_skip }}
@@ -25,7 +25,7 @@ jobs:
2525
update_lint_get_data:
2626
needs: pre_job
2727
if: needs.pre_job.outputs.should_skip != 'true' && startsWith(github.head_ref, 'lint-fix-patches') == false && github.event.pull_request.head.repo.full_name == github.repository
28-
runs-on: ubuntu-latest
28+
runs-on: ubuntu-22.04
2929
steps:
3030
- uses: actions/checkout@v3
3131
with:

0 commit comments

Comments
 (0)