diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index fa2b9f0..54e4920 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -4,7 +4,7 @@ on: - push env: - GO_VERSION: 1.18 + GO_VERSION: 1.19 CGO_ENABLED: 0 jobs: diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 4e76ac0..2859e42 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -6,7 +6,7 @@ on: - master env: - GO_VERSION: 1.18 + GO_VERSION: 1.19 CGO_ENABLED: 0 IMAGE_REPOSITORY: sosedoff/pgweb diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 33d6b75..e309522 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,7 +6,7 @@ on: - "v*" env: - GO_VERSION: 1.18 + GO_VERSION: 1.19 CGO_ENABLED: 0 DOCKER_REPOSITORY: sosedoff/pgweb GHCR_REPOSITORY: sosedoff/pgweb diff --git a/Dockerfile b/Dockerfile index 0f05649..5b7d10e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # ------------------------------------------------------------------------------ # Builder Stage # ------------------------------------------------------------------------------ -FROM golang:1.18-bullseye AS build +FROM golang:1.19-bullseye AS build WORKDIR /build ADD . /build diff --git a/Makefile b/Makefile index d392545..eb65d4c 100644 --- a/Makefile +++ b/Makefile @@ -60,6 +60,9 @@ clean: docker: docker build --no-cache -t pgweb . +docker-run: + docker run --rm -p 8081:8081 -it pgweb + docker-release: docker build --no-cache -t $(DOCKER_RELEASE_TAG) . docker tag $(DOCKER_RELEASE_TAG) $(DOCKER_LATEST_TAG) diff --git a/appveyor.yml b/appveyor.yml index cac32d5..9000665 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -2,17 +2,17 @@ clone_folder: c:\gopath\src\github.com\sosedoff\pgweb environment: GOPATH: c:\gopath - GOROOT: c:\goroot118\go - GOTOOLDIR: c:\goroot118\go\pkg\tool\windows_amd64 + GOROOT: c:\goroot119\go + GOTOOLDIR: c:\goroot119\go\pkg\tool\windows_amd64 CGO_ENABLED: 0 services: - postgresql install: - - ps: mkdir c:\goroot118 - - ps: iwr -outf c:\goroot118\go1.18.windows-amd64.zip https://golang.org/dl/go1.18.windows-amd64.zip - - ps: Expand-Archive c:\goroot118\go1.18.windows-amd64.zip -DestinationPath c:\goroot118 + - ps: mkdir c:\goroot119 + - ps: iwr -outf c:\goroot119\go1.19.windows-amd64.zip https://golang.org/dl/go1.19.windows-amd64.zip + - ps: Expand-Archive c:\goroot119\go1.19.windows-amd64.zip -DestinationPath c:\goroot119 - set PATH=%GOPATH%\bin;%PATH% - set PATH=%GOROOT%\bin;%PATH% - echo %PATH%