Skip to content

Commit f50e3ee

Browse files
committed
fix: switch to ubuntu-latest for workflows
Signed-off-by: dirgim <[email protected]> rh-pre-commit.version: 2.2.0 rh-pre-commit.check-secrets: ENABLED
1 parent 085c181 commit f50e3ee

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build.yml

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

77
jobs:
88
build-image:
9-
runs-on: ubuntu-20.04
9+
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout application-service source code
1212
uses: actions/checkout@v2

.github/workflows/pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
go:
99
name: Check sources
10-
runs-on: ubuntu-20.04
10+
runs-on: ubuntu-latest
1111
env:
1212
OPERATOR_SDK_VERSION: v1.14.0
1313
PR_CHECK: true
@@ -21,7 +21,7 @@ jobs:
2121
with:
2222
fetch-depth: 0
2323
- name: Cache Operator SDK ${{ env.OPERATOR_SDK_VERSION }}
24-
uses: actions/cache@v2
24+
uses: actions/cache@v3
2525
id: cache-operator-sdk
2626
with:
2727
path: ~/cache
@@ -39,7 +39,7 @@ jobs:
3939
echo "$HOME/bin" >> $GITHUB_PATH
4040
- name: Cache go modules
4141
id: cache-mod
42-
uses: actions/cache@v2
42+
uses: actions/cache@v3
4343
with:
4444
path: ~/go/pkg/mod
4545
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}

0 commit comments

Comments
 (0)