From b6e535a161ac8e01de5b3dc5f5327fa00cbbd7f6 Mon Sep 17 00:00:00 2001 From: Robert Lin Date: Fri, 2 Oct 2020 18:53:57 +0800 Subject: [PATCH] chore: bump pipelines to go1.15 (#693) --- .appveyor.yml | 2 +- .github/workflows/pipeline.yml | 8 ++++---- .github/workflows/publish-release.yml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 815f1498..cc962069 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -9,7 +9,7 @@ clone_folder: c:\gopath\src\github.com\ubclaunchpad\inertia environment: GOPATH: c:\gopath DEPTESTBYPASS501: 1 - GOVERSION: "1.14" + GOVERSION: "1.15" init: - git config --global core.autocrlf input diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 39e2241d..f9673d12 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -16,7 +16,7 @@ jobs: steps: - uses: actions/checkout@v1 - uses: actions/setup-go@v1 - with: { go-version: '1.14' } + with: { go-version: '1.15' } - name: Run linters run: make lint @@ -25,7 +25,7 @@ jobs: steps: - uses: actions/checkout@v1 - uses: actions/setup-go@v1 - with: { go-version: '1.14' } + with: { go-version: '1.15' } - name: Build daemon run: make daemon TAG=test - name: Cache daemon image @@ -40,7 +40,7 @@ jobs: steps: - uses: actions/checkout@v1 - uses: actions/setup-go@v1 - with: { go-version: '1.14' } + with: { go-version: '1.15' } - name: Install Docker dependencies run: bash test/docker_deps.sh - name: Start test container @@ -78,7 +78,7 @@ jobs: steps: - uses: actions/checkout@v1 - uses: actions/setup-go@v1 - with: { go-version: '1.14' } + with: { go-version: '1.15' } - name: Start mock VPS (${{ matrix.case }}) run: | make testenv \ diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 99792919..c30689cc 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -10,7 +10,7 @@ jobs: steps: - uses: actions/checkout@v1 - uses: actions/setup-go@v1 - with: { go-version: '1.14' } + with: { go-version: '1.15' } - name: Build release run: | docker login -u ${{ secrets.docker_user }} -p ${{ secrets.docker_key }}