Skip to content

Commit 2ca0d46

Browse files
authored
chore(runner): bump u2f to ubuntu-22.04 (#1447)
2 parents a631e37 + 6396781 commit 2ca0d46

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/go.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
matrix:
9292
os:
9393
- ubuntu-latest
94-
- ubuntu-20.04
94+
- ubuntu-22.04
9595
- macos-latest
9696
runs-on: ${{ matrix.os }}
9797
steps:
@@ -104,7 +104,7 @@ jobs:
104104
go-version-file: "go.mod"
105105

106106
- name: Install dependency required for linux builds
107-
if: matrix.os == 'ubuntu-20.04'
107+
if: matrix.os == 'ubuntu-22.04'
108108
run: sudo apt-get update && sudo apt-get install -y libudev-dev
109109

110110
- name: GoReleaser

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
matrix:
2121
os:
2222
- ubuntu-latest
23-
- ubuntu-20.04
23+
- ubuntu-22.04
2424
- macos-latest
2525
runs-on: ${{ matrix.os }}
2626
if: github.event_name != 'workflow_dispatch'
@@ -37,15 +37,15 @@ jobs:
3737
go-version-file: "go.mod"
3838

3939
- name: Install dependency required for linux builds
40-
if: matrix.os == 'ubuntu-20.04'
40+
if: matrix.os == 'ubuntu-22.04'
4141
run: sudo apt-get update && sudo apt-get install -y libudev-dev
4242

4343
- name: Add Lowercase Repository Name to Environment
4444
run: |
4545
echo REPOSITORY_NAME_LOWERCASE=$(echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]') >> $GITHUB_ENV
4646
4747
- uses: "docker/login-action@v3"
48-
if: matrix.os == 'ubuntu-20.04'
48+
if: matrix.os == 'ubuntu-22.04'
4949
with:
5050
registry: "ghcr.io"
5151
username: "${{ github.actor }}"

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ BIN_DIR := $(CURDIR)/bin
1616
ifeq ($(OS),Darwin)
1717
CONFIG_FILE?=$(CURDIR)/.goreleaser.macos-latest.yml
1818
else ifeq ($(OS),Linux)
19-
CONFIG_FILE?=$(CURDIR)/.goreleaser.ubuntu-20.04.yml
19+
CONFIG_FILE?=$(CURDIR)/.goreleaser.ubuntu-22.04.yml
2020
else
2121
$(error Unsupported build OS: $(OS))
2222
endif

0 commit comments

Comments
 (0)