diff options
author | pg9182 <96569817+pg9182@users.noreply.github.com> | 2022-11-27 02:57:33 -0500 |
---|---|---|
committer | pg9182 <96569817+pg9182@users.noreply.github.com> | 2022-11-27 02:57:33 -0500 |
commit | b033859d7390b9e9c9e0b4084b83e437b292ac21 (patch) | |
tree | ebaa130e9d1144850152f2a1f7eeb1d1d561747b | |
parent | d19f6ea9a4c2892cc044acd08fa73bf238a8fabd (diff) | |
download | Atlas-b033859d7390b9e9c9e0b4084b83e437b292ac21.tar.gz Atlas-b033859d7390b9e9c9e0b4084b83e437b292ac21.zip |
all: Update GitHub Actions config
* Use staticcheck with Go directly instead of via the action.
-rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 175b384..9cec2f6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,8 +53,4 @@ jobs: run: go vet ./... - name: Go staticcheck - uses: dominikh/staticcheck-action@v1.2.0 - with: - version: "2022.1.1" - install-go: false - cache-key: ${{ matrix.go }} + run: go run honnef.co/go/tools/cmd/staticcheck@2022.1.3 ./... |