Skip to content

Commit 4f3792b

Browse files
authored
Updating github runner from 20.04 ahead of deprecation (#1223)
## 🎟️ Tracking actions/runner-images#11101 ## 📔 Objective The ubuntu-20.04 runner will be removed from GitHub on April 1st. This PR updates the ubuntu version to 22.04 The pinned version of actions/cache was a version behind what we're using everywhere else and has been deprecated by Github, so that's been updated to resolve one of the tests that was failing. ## ⏰ Reminders before review - Contributor guidelines followed - All formatters and local linters executed and passed - Written new unit and / or integration tests where applicable - Protected functional changes with optionality (feature flags) - Used internationalization (i18n) for all UI strings - CI builds passed - Communicated to DevOps any deployment requirements - Updated any necessary documentation (Confluence, contributing docs) or informed the documentation team ## 🦮 Reviewer guidelines <!-- Suggested interactions but feel free to use (or not) as you desire! --> - 👍 (`:+1:`) or similar for great changes - 📝 (`:memo:`) or ℹ️ (`:information_source:`) for notes or general info - ❓ (`:question:`) for questions - 🤔 (`:thinking:`) or 💭 (`:thought_balloon:`) for more open inquiry that's not quite a confirmed issue and could potentially benefit from discussion - 🎨 (`:art:`) for suggestions / improvements - ❌ (`:x:`) or ⚠️ (`:warning:`) for more significant problems or concerns needing attention - 🌱 (`:seedling:`) or ♻️ (`:recycle:`) for future improvements or indications of technical debt - ⛏ (`:pick:`) for minor or nitpick changes
1 parent 4518617 commit 4f3792b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build-cli.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -245,16 +245,16 @@ jobs:
245245
fail-fast: false
246246
matrix:
247247
settings:
248-
- os: ubuntu-20.04
248+
- os: ubuntu-22.04
249249
target: x86_64-unknown-linux-musl
250250

251-
- os: ubuntu-20.04
251+
- os: ubuntu-22.04
252252
target: aarch64-unknown-linux-musl
253253

254-
- os: ubuntu-20.04
254+
- os: ubuntu-22.04
255255
target: x86_64-unknown-linux-gnu
256256

257-
- os: ubuntu-20.04
257+
- os: ubuntu-22.04
258258
target: aarch64-unknown-linux-gnu
259259
steps:
260260
- name: Checkout repo

.github/workflows/build-go.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
go-version: ${{ env.GO_VERSION }}
2828

2929
- name: Cache dependencies
30-
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4.1.2
30+
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
3131
with:
3232
path: ~/go/pkg/mod
3333
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}

0 commit comments

Comments
 (0)