chore(deps): update dependency styled-components to v5.3.11 #26281
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: Lint | |
| on: | |
| push: | |
| branches: | |
| - stage | |
| - main | |
| pull_request: | |
| types: [opened, synchronize] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Go | |
| id: setup-go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: go.mod | |
| # Keep setup-go cache disabled and use explicit actions/cache below so keying/restore | |
| # behavior is consistent across workflows. | |
| cache: false | |
| - name: Restore Go cache (lint) | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| ~/go/pkg/mod | |
| ~/.cache/go-build | |
| key: ${{ runner.os }}-go-${{ steps.setup-go.outputs.go-version }}-lint-${{ hashFiles('go.sum', 'tool.mod', 'tool.sum', 'ssvsigner/go.sum') }} | |
| restore-keys: | | |
| ${{ runner.os }}-go-${{ steps.setup-go.outputs.go-version }}-lint- | |
| ${{ runner.os }}-go-${{ steps.setup-go.outputs.go-version }}- | |
| - name: Run make lint | |
| run: make lint |