Skip to content

Commit 25cb490

Browse files
remove stale tokens in keychain (#157)
1 parent e178c19 commit 25cb490

File tree

12 files changed

+324
-367
lines changed

12 files changed

+324
-367
lines changed

.changelog/pr-157.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:bug
2+
fix issue where stale tokens were not removed from keychain
3+
```

.github/workflows/code-analysis-lint-test.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,13 +75,16 @@ jobs:
7575
with:
7676
go-version-file: "go.mod"
7777
cache: true
78+
- id: golangci-lint-version
79+
run: >-
80+
echo "version=$(go tool golangci-lint version --format short)" >> $GITHUB_OUTPUT
7881
- name: golangci-lint
7982
uses: golangci/golangci-lint-action@v8
8083
with:
8184
# Require: The version of golangci-lint to use.
8285
# When `install-mode` is `binary` (default) the value can be v1.2 or v1.2.3 or `latest` to use the latest version.
8386
# When `install-mode` is `goinstall` the value can be v1.2.3, `latest`, or the hash of a commit.
84-
version: latest
87+
version: "${{ steps.golangci-lint-version.outputs.version }}"
8588

8689
# Optional: working directory, useful for monorepos
8790
# working-directory: somedir

0 commit comments

Comments
 (0)