Skip to content

Commit

Permalink
chore(module-versions): Use searchModuleVersions instead of versions …
Browse files Browse the repository at this point in the history
…when fetching module versions
  • Loading branch information
0michalsokolowski0 committed Sep 13, 2024
1 parent 8330fd5 commit 55f33c4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1 +1 @@
GOLANGCI_LINT_VERSION=v1.61.0
GOLANGCI_LINT_VERSION=v1.60.0
7 changes: 6 additions & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ jobs:
- name: Mark source directory as safe.
run: git config --global --add safe.directory $GITHUB_WORKSPACE

- name: Load environment variables from .env file
run: |
set -a
source .env
set +a
- name: Set up Go
uses: actions/setup-go@v5
with: { go-version-file: go.mod }
Expand All @@ -33,6 +39,5 @@ jobs:
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v6
with:
envs: .env
args: --verbose
version: ${{ env.GOLANGCI_LINT_VERSION }}

0 comments on commit 55f33c4

Please sign in to comment.