This repository was archived by the owner on May 20, 2025. It is now read-only.
fix: Replace v-model:value for the checkbox field with v-model:checked
#14
Workflow file for this run
This file contains hidden or 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: | |
| workflow_dispatch: | |
| push: | |
| tags-ignore: | |
| - "*" | |
| branches: | |
| - main | |
| paths: | |
| - '*.go' | |
| - '**/*.go' | |
| - '.github/workflows/lint.yml' | |
| pull_request: | |
| paths: | |
| - '*.go' | |
| - '**/*.go' | |
| - '.github/workflows/lint.yml' | |
| permissions: | |
| contents: read | |
| env: | |
| GOTOOLCHAIN: local | |
| jobs: | |
| golangci: | |
| name: lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Harden Runner | |
| uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # ratchet:step-security/harden-runner@v2.11.0 | |
| with: | |
| egress-policy: block | |
| disable-sudo: true | |
| allowed-endpoints: > | |
| api.github.com:443 | |
| github.com:443 | |
| golangci-lint.run:443 | |
| objects.githubusercontent.com:443 | |
| proxy.golang.org:443 | |
| raw.githubusercontent.com:443 | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # ratchet:actions/setup-go@v5 | |
| with: | |
| go-version: '1.24' | |
| check-latest: true | |
| cache: true | |
| - name: golangci-lint | |
| uses: golangci/golangci-lint-action@1481404843c368bc19ca9406f87d6e0fc97bdcfd # ratchet:golangci/golangci-lint-action@v6 | |
| with: | |
| version: latest | |
| args: --timeout 4m |