Skip to content

Commit 3af3173

Browse files
ci: bump crate-ci/typos from 1.19.0 to 1.20.9 in the github-actions group (#13027)
* ci: bump crate-ci/typos in the github-actions group Bumps the github-actions group with 1 update: [crate-ci/typos](https://github.com/crate-ci/typos). Updates `crate-ci/typos` from 1.19.0 to 1.20.9 - [Release notes](https://github.com/crate-ci/typos/releases) - [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md) - [Commits](crate-ci/typos@v1.19.0...v1.20.9) --- updated-dependencies: - dependency-name: crate-ci/typos dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> * Add `pn` exclusion --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Kyle Carberry <kyle@carberry.com>
1 parent 2e49fa9 commit 3af3173

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ jobs:
142142
143143
# Check for any typos
144144
- name: Check for typos
145-
uses: crate-ci/typos@v1.19.0
145+
uses: crate-ci/typos@v1.20.9
146146
with:
147147
config: .github/workflows/typos.toml
148148

.github/workflows/typos.toml

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Hashi = "Hashi"
1515
trialer = "trialer"
1616
encrypter = "encrypter"
1717
hel = "hel" # as in helsinki
18+
pn = "pn" # this is used as proto node
1819

1920
[files]
2021
extend-exclude = [

coderd/authorize.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -190,9 +190,9 @@ func (api *API) checkAuthorization(rw http.ResponseWriter, r *http.Request) {
190190
// Only support referencing some resources by ID.
191191
switch v.Object.ResourceType.String() {
192192
case rbac.ResourceWorkspaceExecution.Type:
193-
wrkSpace, err := api.Database.GetWorkspaceByID(ctx, id)
193+
workSpace, err := api.Database.GetWorkspaceByID(ctx, id)
194194
if err == nil {
195-
dbObj = wrkSpace.ExecutionRBAC()
195+
dbObj = workSpace.ExecutionRBAC()
196196
}
197197
dbErr = err
198198
case rbac.ResourceWorkspace.Type:

docs/changelogs/v2.9.0.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ The following features are hidden or disabled by default as we don't guarantee s
109109
- Dashboard: Improve clipboard support on HTTP connections and older browsers (#12178) (@Parkreiner)
110110
- Server: Add postgres triggers to remove deleted users from user_links (#12117) (@Emyrk)
111111
- Dashboard: Add tests and improve accessibility for useClickable (#12218) (@Parkreiner)
112-
- Server: Ignore surronding whitespace for cli config (#12250) (@Emyrk)
112+
- Server: Ignore surrounding whitespace for cli config (#12250) (@Emyrk)
113113
- Tailnet: Stop waiting for Agent in a goroutine in ssh test (#12268) (@spikecurtis)
114114
- d4d8424ce fix: fix GetOrganizationsByUserID error when multiple organizations exist (#12257) (@Emyrk)
115115
- Server: Refresh entitlements after creating first user (#12285) (@mtojek)

0 commit comments

Comments
 (0)