Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@ jobs:
node-version: "22"

- name: Install golangci-lint
run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b "$HOME/go/bin" latest
# Pin both the installer ref and the version to the tag used in .pre-commit-config.yaml so the
# Copilot toolchain lints with the same golangci-lint as local/CI, and never resolves to an
# unpinned `latest` whose tarball checksum can break the install (e.g. the v2.12.2 mismatch).
run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/v2.5.0/install.sh | sh -s -- -b "$HOME/go/bin" v2.5.0

- name: Install mega-linter-runner
run: npm install mega-linter-runner -g
Expand Down
Loading