Skip to content

Commit

Permalink
Merge branch 'main' into versioned
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Feb 1, 2023
2 parents 9a88e7c + 09b31e7 commit 9787291
Show file tree
Hide file tree
Showing 8 changed files with 196 additions and 189 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
with:
node-version: '16'
- name: Restore bazel cache
uses: actions/[email protected].3
uses: actions/[email protected].4
env:
cache-name: bazel-cache
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
registry-url: 'https://registry.npmjs.org'
node-version: '16'
- name: Restore bazel cache
uses: actions/[email protected].3
uses: actions/[email protected].4
env:
cache-name: bazel-cache
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/versioning.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
# Needed to allow an action to trigger another action.
token: ${{ secrets.GH_PAT }}
- name: Restore bazel cache
uses: actions/[email protected].3
uses: actions/[email protected].4
env:
cache-name: bazel-cache
with:
Expand Down
6 changes: 3 additions & 3 deletions bzl/deps.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,10 @@ def fetch_dependencies():

http_archive(
name = "com_github_bazelbuild_buildtools",
sha256 = "05eff86c1d444dde18d55ac890f766bce5e4db56c180ee86b5aacd6704a5feb9",
strip_prefix = "buildtools-6.0.0",
sha256 = "ca524d4df8c91838b9e80543832cf54d945e8045f6a2b9db1a1d02eec20e8b8c",
strip_prefix = "buildtools-6.0.1",
urls = [
"https://github.com/bazelbuild/buildtools/archive/refs/tags/6.0.0.tar.gz",
"https://github.com/bazelbuild/buildtools/archive/refs/tags/6.0.1.tar.gz",
],
)

Expand Down
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"@actions/github": "5.1.1",
"@babel/preset-typescript": "7.18.6",
"@bazel/bazelisk": "1.12.1",
"@bazel/buildifier": "6.0.0",
"@bazel/buildozer": "6.0.0",
"@bazel/buildifier": "6.0.1",
"@bazel/buildozer": "6.0.1",
"@bazel/esbuild": "5.7.3",
"@bazel/ibazel": "latest",
"@bazel/labs": "4.6.1",
Expand All @@ -18,13 +18,13 @@
"@fortawesome/fontawesome-svg-core": "6.2.1",
"@fortawesome/free-solid-svg-icons": "6.2.1",
"@fortawesome/react-fontawesome": "0.2.0",
"@microsoft/api-documenter": "7.21.0",
"@microsoft/api-extractor": "7.34.0",
"@microsoft/api-documenter": "7.21.2",
"@microsoft/api-extractor": "7.34.1",
"@pulumi/aws": "5.28.0",
"@pulumi/awsx": "1.0.1",
"@pulumi/pulumi": "3.53.1",
"@schemastore/package": "0.0.6",
"@swc/cli": "0.1.59",
"@swc/cli": "0.1.60",
"@testing-library/react": "13.4.0",
"@types/cross-spawn": "6.0.2",
"@types/d3-axis": "3.0.2",
Expand All @@ -39,8 +39,8 @@
"@types/svgo": "2.6.4",
"@types/tmp": "0.2.3",
"@types/uuid": "9.0.0",
"@typescript-eslint/eslint-plugin": "5.49.0",
"@typescript-eslint/parser": "5.49.0",
"@typescript-eslint/eslint-plugin": "5.50.0",
"@typescript-eslint/parser": "5.50.0",
"bcryptjs": "2.4.3",
"chalk": "5.2.0",
"classnames": "2.3.2",
Expand Down Expand Up @@ -69,15 +69,15 @@
"module-alias": "2.2.2",
"next": "13.1.6",
"patch-package": "6.5.1",
"prettier": "2.8.1",
"prettier": "2.8.3",
"puppeteer": "19.6.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router": "6.8.0",
"react-router-dom": "6.8.0",
"react-spring": "9.6.1",
"regenerator-runtime": "0.13.11",
"renovate": "^34.114.0",
"renovate": "^34.117.2",
"sharp": "0.31.3",
"stylelint": "14.16.1",
"stylelint-config-css-modules": "4.1.0",
Expand All @@ -87,7 +87,7 @@
"tmp": "0.2.1",
"ts-node": "10.9.1",
"ts-toolbelt": "9.6.0",
"typescript": "4.9.4",
"typescript": "4.9.5",
"uuid": "9.0.0",
"yarn": "1.22.19"
},
Expand Down
2 changes: 1 addition & 1 deletion ts/log/log.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/

export interface Process {
exitCode?: typeof globalThis.process['exitCode'];
exitCode?: (typeof globalThis.process)['exitCode'];
on(event: 'exit' | 'uncaughtException', handler: () => unknown): unknown;
}

Expand Down
Empty file added ts/math/tuple.ts
Empty file.
Loading

0 comments on commit 9787291

Please sign in to comment.