mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [actions/setup-go](https://github.com/actions/setup-go) from 4.1.0 to 5.0.0.
- [Release notes](https://github.com/actions/setup-go/releases)
- [Commits](93397bea11...0c52d547c9
)
---
updated-dependencies:
- dependency-name: actions/setup-go
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
52 lines
1.6 KiB
YAML
52 lines
1.6 KiB
YAML
---
|
|
name: Static Analysis
|
|
on: [push, pull_request]
|
|
permissions: read-all
|
|
jobs:
|
|
run:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
|
- id: goversion
|
|
run: echo "goversion=$(cat .go-version)" >> "$GITHUB_OUTPUT"
|
|
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
|
|
with:
|
|
go-version: ${{ steps.goversion.outputs.goversion }}
|
|
- id: golangci_lint_version
|
|
run: echo "golangci_lint_version=$(cd tools/mod && go list -m -f {{.Version}} github.com/golangci/golangci-lint)" >> "$GITHUB_OUTPUT"
|
|
- name: golangci-lint
|
|
uses: golangci/golangci-lint-action@3a919529898de77ec3da873e3063ca4b10e7f5cc # v3.7.0
|
|
with:
|
|
version: ${{ steps.golangci_lint_version.outputs.golangci_lint_version }}
|
|
args: --config tools/.golangci.yaml
|
|
- name: protoc
|
|
uses: arduino/setup-protoc@149f6c87b92550901b26acd1632e11c3662e381f # v1.3.0
|
|
with:
|
|
version: '3.20.3'
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
- uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
- run: |
|
|
set -euo pipefail
|
|
|
|
cargo install marker --version 0.9.0
|
|
- run: |
|
|
set -euo pipefail
|
|
|
|
make verify
|
|
- run: |
|
|
set -euo pipefail
|
|
|
|
make fix
|
|
|
|
DIFF=$(git status --porcelain)
|
|
|
|
if [ -n "$DIFF" ]; then
|
|
echo "These files were modified:"
|
|
echo
|
|
echo "$DIFF"
|
|
echo
|
|
exit 1
|
|
fi
|