Skip to content

Commit

Permalink
workflow: Use ubuntu-latest for pipelines
Browse files Browse the repository at this point in the history
Signed-off-by: Evgenii Baidakov <[email protected]>
  • Loading branch information
smallhive committed Aug 20, 2024
1 parent 935a38d commit 2da2ee6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ on:
jobs:
build_bin:
name: Build binary
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
strategy:
matrix:
go_os: [ linux, darwin ]
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
build_image:
needs: build_bin
name: Build Docker image
runs-on: ubuntu-22.04
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

cover:
name: Coverage
runs-on: ubuntu-22.04
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
Expand All @@ -56,7 +56,7 @@ jobs:

tests:
name: Tests
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
strategy:
matrix:
go_versions: [ '1.22', '1.23' ] # The latest is used by Coverage already.
Expand Down

0 comments on commit 2da2ee6

Please sign in to comment.