Skip to content

Commit

Permalink
chore(deps): update all minor dependencies (#242)
Browse files Browse the repository at this point in the history
* chore(deps): update all minor dependencies

* test: pin to Node v20.7.0

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Pat Heard <patrick.heard@cds-snc.ca>
  • Loading branch information
renovate[bot] and patheard authored Oct 3, 2023
1 parent d9a1f28 commit ee0e28d
Show file tree
Hide file tree
Showing 12 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"image": "mcr.microsoft.com/vscode/devcontainers/base:bullseye",
"features": {
"node": {
"version": "lts",
"version": "20.7.0",
"nodeGypDependencies": true
},
"terraform": {
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
- uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1
with:
node-version: 20
node-version: "20.7.0"
- uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
with:
path: ~/.npm
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@ class OidcClient {
.catch(error => {
throw new Error(`Failed to get ID Token. \n
Error Code : ${error.statusCode}\n
Error Message: ${error.result.message}`);
Error Message: ${error.message}`);
});
const id_token = (_a = res.result) === null || _a === void 0 ? void 0 : _a.value;
if (!id_token) {
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
},
"devDependencies": {
"@vercel/ncc": "0.38.0",
"eslint": "8.49.0",
"eslint": "8.50.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-security": "1.7.1",
"husky": "8.0.3",
Expand Down
2 changes: 1 addition & 1 deletion test/changes/changes.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
test = {
source = "hashicorp/random"
version = "~> 3.1.0"
version = "~> 3.5.0"
}
}
required_version = ">= 1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion test/format-error/format-error.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
test = {
source = "hashicorp/random"
version = "~> 3.1.0"
version = "~> 3.5.0"
}
}
required_version = ">= 1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion test/invalid/invalid.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
test = {
source = "hashicorp/random"
version = "~> 3.1.0"
version = "~> 3.5.0"
}
}
required_version = ">= 1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion test/no-changes/no-changes.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
test = {
source = "hashicorp/random"
version = "~> 3.1.0"
version = "~> 3.5.0"
}
}
required_version = ">= 1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion test/skip-conftest/skip-conftest.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
test = {
source = "hashicorp/random"
version = "~> 3.1.0"
version = "~> 3.5.0"
}
}
required_version = ">= 1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion test/skip-plan/skip-plan.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
test = {
source = "hashicorp/random"
version = "~> 3.1.0"
version = "~> 3.5.0"
}
}
required_version = ">= 1.0.0"
Expand Down

0 comments on commit ee0e28d

Please sign in to comment.