Skip to content

Commit

Permalink
Updating action workflow to run on ubuntu-latest
Browse files Browse the repository at this point in the history
  • Loading branch information
Eoghan Russell committed Feb 24, 2023
1 parent c54b82c commit dd1c73d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build-test-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
matrix:
go-version: [1.17.x, 1.18.x, 1.19.x]
goarch: [amd64]
os: [self-hosted]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go matrix
Expand All @@ -25,7 +25,7 @@ jobs:
run: make build

test:
runs-on: self-hosted
runs-on: ubuntu-latest
needs: build
name: test
steps:
Expand All @@ -44,7 +44,7 @@ jobs:
run: make test

test-coverage:
runs-on: self-hosted
runs-on: ubuntu-latest
needs: build
name: test-coverage
steps:
Expand All @@ -69,7 +69,7 @@ jobs:

golangci:
name: Golangci-lint
runs-on: self-hosted
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v3
Expand All @@ -83,7 +83,7 @@ jobs:
version: v1.46.2

hadolint:
runs-on: self-hosted
runs-on: ubuntu-latest
name: Hadolint
steps:
- uses: actions/checkout@v2
Expand All @@ -94,7 +94,7 @@ jobs:
ignore: DL3018 # DL3018: GH issue 368

go-check:
runs-on: self-hosted
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

Expand Down

0 comments on commit dd1c73d

Please sign in to comment.