Skip to content

Commit

Permalink
ci: ubuntu-22.04, go1.19.11, go1.20.6
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewpi committed Jul 15, 2023
1 parent aa8ffdf commit c9d92f7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
jobs:
analyze:
name: Analyze
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

permissions:
actions: read
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
jobs:
build-and-push:
name: Build and Push
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
# Always run against a tag, even if the commit into the tag has [docker skip] within the commit message.
if: "!contains(github.ref, 'develop') || (!contains(github.event.head_commit.message, 'skip docker') && !contains(github.event.head_commit.message, 'docker skip'))"
steps:
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
echo "short_sha=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: Build and Push (tag)
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
if: "github.event_name == 'release' && github.event.action == 'published'"
with:
context: .
Expand All @@ -63,7 +63,7 @@ jobs:
tags: ${{ steps.docker_meta.outputs.tags }}

- name: Build and Push (develop)
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
if: "github.event_name == 'push' && contains(github.ref, 'develop')"
with:
context: .
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04]
go: ["1.19.9", "1.20.4"]
os: [ubuntu-22.04]
go: ["1.19.11", "1.20.6"]
goos: [linux]
goarch: [amd64, arm64]

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
release:
name: Release
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

steps:
- name: Code Checkout
Expand All @@ -17,7 +17,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: "1.19.9"
go-version: "1.19.11"

- name: Build release binaries
env:
Expand Down

0 comments on commit c9d92f7

Please sign in to comment.