Skip to content

chore(deps): update dependency styled-components to v5.3.11 #26281

chore(deps): update dependency styled-components to v5.3.11

chore(deps): update dependency styled-components to v5.3.11 #26281

Workflow file for this run

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