Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions .changelog/pr-157.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:bug
fix issue where stale tokens were not removed from keychain
```
5 changes: 4 additions & 1 deletion .github/workflows/code-analysis-lint-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,16 @@ jobs:
with:
go-version-file: "go.mod"
cache: true
- id: golangci-lint-version
run: >-
echo "version=$(go tool golangci-lint version --format short)" >> $GITHUB_OUTPUT
- name: golangci-lint
uses: golangci/golangci-lint-action@v8
with:
# Require: The version of golangci-lint to use.
# When `install-mode` is `binary` (default) the value can be v1.2 or v1.2.3 or `latest` to use the latest version.
# When `install-mode` is `goinstall` the value can be v1.2.3, `latest`, or the hash of a commit.
version: latest
version: "${{ steps.golangci-lint-version.outputs.version }}"

# Optional: working directory, useful for monorepos
# working-directory: somedir
Expand Down
Loading