diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cc7d642..8396eef 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: - name: Determine Go version from go.mod run: echo "GO_VERSION=$(grep "go 1." go.mod | cut -d " " -f 2)" >> $GITHUB_ENV - name: Setup Golang Environment - uses: actions/setup-go@v2 + uses: actions/setup-go@v3 with: go-version: ${{ env.GO_VERSION }} - name: Build Binary @@ -53,7 +53,7 @@ jobs: - name: Determine Go version from go.mod run: echo "GO_VERSION=$(grep "go 1." go.mod | cut -d " " -f 2)" >> $GITHUB_ENV - name: Setup Golang Environment - uses: actions/setup-go@v2 + uses: actions/setup-go@v3 with: go-version: ${{ env.GO_VERSION }} - name: Run Tests diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index ee7e810..fbdc5a6 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -27,7 +27,7 @@ jobs: id: vars run: echo "::set-output name=go_version::$(grep "go 1." go.mod | cut -d " " -f 2)" - name: Setup Golang Environment - uses: actions/setup-go@v2 + uses: actions/setup-go@v3 with: go-version: ${{ steps.vars.outputs.go_version }} - name: Lint Code