diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e4ba5e781..42de97bbf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,7 +32,7 @@ jobs: - name: Checkout Repository uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3.2.0 - name: Setup Golang Environment - uses: actions/setup-go@d0a58c1c4d2b25278816e339b944508c875f3613 # v3.4.0 + uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # v3.5.0 with: go-version-file: go.mod cache: true @@ -49,7 +49,7 @@ jobs: with: fetch-depth: 0 - name: Setup Golang Environment - uses: actions/setup-go@d0a58c1c4d2b25278816e339b944508c875f3613 # v3.4.0 + uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # v3.5.0 with: go-version-file: go.mod cache: true diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 6d6072af4..4143c0ebd 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -34,7 +34,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@d0a58c1c4d2b25278816e339b944508c875f3613 # v3.4.0 + uses: actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # v3.5.0 with: go-version: ${{ steps.vars.outputs.go_version }} - name: Lint Code