Skip to content

Commit

Permalink
Move to Golang 1.19.1
Browse files Browse the repository at this point in the history
  • Loading branch information
josephschorr committed Sep 13, 2022
1 parent 79ba337 commit f410454
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-test.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: "Build & Test"
on: # yamllint disable-line rule:truthy
on: # yamllint disable-line rule:truthy
push:
branches:
- "!dependabot/*"
Expand All @@ -16,7 +16,7 @@ jobs:
- uses: "actions/checkout@v3"
- uses: "actions/setup-go@v3"
with:
go-version: "~1.18"
go-version: "~1.19.1"
- uses: "authzed/actions/go-build@main"

image-build:
Expand All @@ -33,6 +33,6 @@ jobs:
- uses: "actions/checkout@v3"
- uses: "actions/setup-go@v3"
with:
go-version: "~1.18"
go-version: "~1.19.1"
- uses: "authzed/action-spicedb@v1"
- uses: "authzed/actions/go-test@main"
6 changes: 3 additions & 3 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: "Lint"
on: # yamllint disable-line rule:truthy
on: # yamllint disable-line rule:truthy
push:
branches:
- "!dependabot/*"
Expand All @@ -15,7 +15,7 @@ jobs:
- uses: "actions/checkout@v3"
- uses: "actions/setup-go@v3"
with:
go-version: "~1.18"
go-version: "~1.19.1"
- uses: "authzed/actions/gofumpt@main"
- uses: "authzed/actions/go-mod-tidy@main"
- uses: "authzed/actions/go-generate@main"
Expand Down Expand Up @@ -60,4 +60,4 @@ jobs:
- name: "Upload Trivy scan results to GitHub Security tab"
uses: "github/codeql-action/upload-sarif@v2"
with:
sarif_file: 'trivy-results.sarif'
sarif_file: "trivy-results.sarif"
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: "release"
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
- "v[0-9]+.[0-9]+.[0-9]+"
jobs:
github:
runs-on: "macos-latest"
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
run: "sudo apt-get update && sudo apt-get install -y gcc-aarch64-linux-gnu gcc-mingw-w64-x86-64"
- uses: "actions/setup-go@v3"
with:
go-version: "~1.18"
go-version: "~1.19.1"
- uses: "goreleaser/goreleaser-action@v2"
with:
distribution: "goreleaser"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.18-alpine3.15 AS build
FROM golang:1.19.1-alpine3.15 AS build

RUN apk update
RUN apk add git
Expand Down

0 comments on commit f410454

Please sign in to comment.