Bump github.com/pulumi/pulumi/pkg/v3 from 3.118.0 to 3.121.0 in /provider #286
Workflow file for this run
This file contains 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: | |
workflow_call: | |
inputs: {} | |
pull_request: | |
branches: | |
- main | |
- v* | |
- feature* | |
paths-ignore: | |
- CHANGELOG.md | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
lint: | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Install go | |
uses: actions/setup-go@v5 | |
with: | |
# The versions of golangci-lint and setup-go here cross-depend and need to update together. | |
go-version: 1.21 | |
# Either this action or golangci-lint needs to disable the cache | |
cache: false | |
- name: disarm go:embed directives to enable lint | |
continue-on-error: true # this fails if there are no go:embed directives | |
run: | | |
git grep -l 'go:embed' -- provider | xargs sed -i 's/go:embed/ goembed/g' | |
- name: prepare upstream | |
continue-on-error: true | |
run: make upstream | |
- run: cd provider && go mod tidy | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v5 | |
with: | |
version: v1.54.1 | |
working-directory: provider | |
skip-pkg-cache: true |