diff --git a/.github/workflows/latest-pre.yml b/.github/workflows/latest-pre.yml index cfd681631..d77f9792f 100644 --- a/.github/workflows/latest-pre.yml +++ b/.github/workflows/latest-pre.yml @@ -13,10 +13,10 @@ jobs: os: [ubuntu-latest, windows-latest, macOS-latest] steps: - - name: Set up Go 1.12 + - name: Set up Go 1.13 uses: actions/setup-go@v1 with: - go-version: 1.12 + go-version: 1.13 id: go - name: Check out code into the Go module directory @@ -27,6 +27,6 @@ jobs: go get -v -d ./... - name: Build run: go build -v ./cmd/wails - + - name: Test run: ./wails version diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 985447a65..0247e85c2 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -13,10 +13,10 @@ jobs: os: [ubuntu-latest, windows-latest, macOS-latest] steps: - - name: Set up Go 1.12 + - name: Set up Go 1.13 uses: actions/setup-go@v1 with: - go-version: 1.12 + go-version: 1.13 id: go - name: Check out code into the Go module directory @@ -27,6 +27,6 @@ jobs: go get -v -d ./... - name: Build run: go build -v ./cmd/wails - + - name: Test run: ./wails version \ No newline at end of file diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 128d378dd..feddbcce5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,7 +4,7 @@ on: branches: - master tags: - - '!**pre**' + - '!**pre**' jobs: build: @@ -15,10 +15,10 @@ jobs: os: [ubuntu-latest, windows-latest, macOS-latest] steps: - - name: Set up Go 1.12 + - name: Set up Go 1.13 uses: actions/setup-go@v1 with: - go-version: 1.12 + go-version: 1.13 id: go - name: Check out code into the Go module directory @@ -29,6 +29,6 @@ jobs: go get -v -d ./... - name: Build run: go build -v ./cmd/wails - + - name: Test run: ./wails version \ No newline at end of file diff --git a/README.md b/README.md index 448ee30a0..d976bbef5 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ The official docs can be found at [https://wails.app](https://wails.app). Wails uses cgo to bind to the native rendering engines so a number of platform dependent libraries are needed as well as an installation of Go. The basic requirements are: -- Go 1.12 +- Go 1.13 - npm ### MacOS diff --git a/go.mod b/go.mod index 13755b0e5..852405bd7 100644 --- a/go.mod +++ b/go.mod @@ -28,4 +28,4 @@ require ( gopkg.in/yaml.v3 v3.0.0-20190709130402-674ba3eaed22 ) -go 1.12 +go 1.13