upgrade cue to v0.3.0-beta.2

Signed-off-by: Andrea Luzzardi <aluzzardi@gmail.com>
This commit is contained in:
Andrea Luzzardi
2021-01-20 19:08:52 -08:00
parent 31ffe23885
commit 70677c411f
4 changed files with 23 additions and 11 deletions

View File

@@ -11,10 +11,10 @@ jobs:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.14.2
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: 1.14.2
go-version: 1.15.6
id: go
- name: Install Dependencies
@@ -22,7 +22,7 @@ jobs:
sudo apt-get update
sudo apt-get install -y --no-install-recommends shellcheck
curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sudo sh -s -- -b /usr/local/bin v1.23.8
curl -L https://github.com/cuelang/cue/releases/download/v0.3.0-alpha6/cue_0.3.0-alpha6_Linux_x86_64.tar.gz | sudo tar zxf - -C /usr/local/bin
curl -L https://github.com/cuelang/cue/releases/download/v0.3.0-beta.2/cue_0.3.0-beta.2_Linux_x86_64.tar.gz | sudo tar zxf - -C /usr/local/bin
- name: Check out
uses: actions/checkout@v2