Skip to content

Commit

Permalink
fix: github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
antho-bunny committed Nov 7, 2024
1 parent 4acb5c3 commit 41f465f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/actions/setup-project/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ runs:
steps:
- uses: pnpm/[email protected]
with:
version: 8
version: 9

- uses: actions/setup-node@v3
with:
node-version: '20'
node-version: '22'
cache: 'pnpm'
cache-dependency-path: './pnpm-lock.yaml'

Expand Down
2 changes: 1 addition & 1 deletion libs/bunny-sdk/src/net/socket_addr.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export function isV4(value: SocketAddr): value is v4.SocketAddrV4 {

export type SocketAddrError = InvalidAddr;

const addr_symbol: Symbol = Symbol("invalidAddr");
const addr_symbol: symbol = Symbol("invalidAddr");
export class InvalidAddr extends Error {
_guard: typeof addr_symbol = addr_symbol;

Expand Down

0 comments on commit 41f465f

Please sign in to comment.