From 7ce9440667aeb9e8f405bad5f55603cac6561deb Mon Sep 17 00:00:00 2001 From: Christoph Witzko <github@christophwitzko.com> Date: Sun, 22 May 2022 19:43:26 +0200 Subject: [PATCH] chore(ci): remove setup-node --- .github/workflows/ci.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2092c22..0ecf46a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,10 +27,10 @@ jobs: matrix: os: [macos-latest, windows-latest, ubuntu-latest] steps: + - uses: actions/checkout@v3 - uses: actions/setup-go@v3 with: go-version: 1.18 - - uses: actions/checkout@v3 - run: go build ./cmd/semantic-release/ env: CGO_ENABLED: 0 @@ -45,13 +45,10 @@ jobs: runs-on: ubuntu-latest needs: build steps: + - uses: actions/checkout@v3 - uses: actions/setup-go@v3 with: go-version: 1.18 - - uses: actions/setup-node@v1 - with: - node-version: 16.x - - uses: actions/checkout@v3 - run: go build ./cmd/semantic-release/ - uses: docker/login-action@v1 with: -- GitLab