Skip to content

Commit 0c3ea76

Browse files
committed
pinned github runners to ubuntu-22.04
1 parent 3677f26 commit 0c3ea76

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/trivyscan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
concurrency:
1313
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.build }} # to branch/PR + build
1414
cancel-in-progress: true
15-
runs-on: ubuntu-latest
15+
runs-on: ubuntu-22.04
1616
strategy:
1717
fail-fast: false
1818
matrix:

.github/workflows/update-timestamps.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
upstream_check:
1010
outputs:
1111
new_fatimage: "${{ steps.fatimage_check.outputs.new_fatimage }}"
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-22.04
1313
steps:
1414
- uses: actions/checkout@v2
1515

@@ -90,7 +90,7 @@ jobs:
9090
bump_timestamps:
9191
if: needs.upstream_check.outputs.new_fatimage == 'true'
9292
needs: build_fatimage
93-
runs-on: ubuntu-latest
93+
runs-on: ubuntu-22.04
9494
steps:
9595
- uses: actions/checkout@v2
9696
with:
@@ -112,7 +112,7 @@ jobs:
112112
create_pr:
113113
needs: bump_timestamps
114114
if: always() && (needs.bump_timestamps.result == 'skipped' || needs.bump_timestamps.result == 'success')
115-
runs-on: ubuntu-latest
115+
runs-on: ubuntu-22.04
116116
steps:
117117
- uses: actions/checkout@v2
118118
with:
@@ -147,7 +147,7 @@ jobs:
147147
needs:
148148
- run_ci
149149
- create_pr
150-
runs-on: ubuntu-latest
150+
runs-on: ubuntu-22.04
151151
steps:
152152
- name: Checkout branch
153153
uses: actions/checkout@v3

0 commit comments

Comments
 (0)