Skip to content

Commit d533325

Browse files
committed
fix: Upgrade github action runner to 22.04 from deprecated 20.04
1 parent b7570f0 commit d533325

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build-master.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- master
88
jobs:
99
build:
10-
runs-on: "ubuntu-20.04"
10+
runs-on: "ubuntu-22.04"
1111
steps:
1212
- name: "Checkout repository"
1313
uses: "actions/checkout@v2"

.github/workflows/build-tag.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
build:
11-
runs-on: "ubuntu-20.04"
11+
runs-on: "ubuntu-22.04"
1212
steps:
1313
- name: "Checkout repository"
1414
uses: "actions/checkout@v2"
@@ -42,7 +42,7 @@ jobs:
4242
4343
publish-release:
4444
needs: "build"
45-
runs-on: "ubuntu-20.04"
45+
runs-on: "ubuntu-22.04"
4646
steps:
4747
# This already extracts the contents of the artifact
4848
- name: "Download artifact"

0 commit comments

Comments
 (0)