diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 15c8d832..846e2bff 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,7 @@ jobs: name: Setup Go uses: actions/setup-go@v2 with: - go-version: '^1.15.6' + go-version: '^1.16.0' - name: Install Deps id: install-deps @@ -28,7 +28,7 @@ jobs: - name: Lint, Test, Build id: lint_test_build - run: V=1 make -j1 bootstrap travis + run: V=1 make -j1 bootstrap ci - name: Is Pre-release id: is_prerelease diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 273d0241..32742133 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,7 +18,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v2 with: - go-version: '^1.15.6' + go-version: '^1.16.0' - name: Install Deps id: install-deps run: sudo apt-get -y install libpcsclite-dev diff --git a/Makefile b/Makefile index 3d30cf23..66921ade 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ OUTPUT_ROOT=output/ all: lint test build -travis: lintcgo testcgo build +ci: lintcgo testcgo build .PHONY: all travis