This repository was archived by the owner on Apr 26, 2024. It is now read-only.
chore: fix #261, use go-jose/go-jose instead of square/go-jose #781
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: golangci-lint | |
on: [push] | |
permissions: | |
contents: read | |
jobs: | |
golangci: | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # ratchet:actions/checkout@v3 | |
# wait for support go 1.18: https://github.com/golangci/golangci-lint/issues/2649. | |
- uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9 # ratchet:actions/setup-go@v3 | |
with: | |
go-version: 1.17 | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@08e2f20817b15149a52b5b3ebe7de50aff2ba8c5 # ratchet:golangci/golangci-lint-action@v3 | |
with: | |
# Wait for action go 1.18 support | |
version: v1.44.2 #v1.45.2 | |
args: --verbose |