Skip to content

Commit

Permalink
Merge pull request #828 from aws-quickstart/fix/ghActions
Browse files Browse the repository at this point in the history
Bug Fix
  • Loading branch information
elamaran11 authored Aug 23, 2023
2 parents e42d0ed + 278f86c commit e753964
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions lib/builders/observability-builder.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { BlueprintBuilder } from '../../lib/stacks';
import * as addons from '../../lib/addons';
import { BlueprintBuilder } from '../stacks';
import * as addons from '../addons';
import * as utils from "../utils";
import * as spi from '../../lib/spi';
import * as spi from '../spi';
import { NestedStack, NestedStackProps } from 'aws-cdk-lib';
import { Construct } from 'constructs';

Expand Down
10 changes: 5 additions & 5 deletions lib/builders/windows-builder.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { BlueprintBuilder } from '../../lib/stacks';
import * as addons from '../../lib/addons';
import { BlueprintBuilder } from '../stacks';
import * as addons from '../addons';
import * as utils from "../utils";
import * as spi from '../../lib/spi';
import * as clusterproviders from '../../lib/cluster-providers';
import * as resourceproviders from '../../lib/resource-providers';
import * as spi from '../spi';
import * as clusterproviders from '../cluster-providers';
import * as resourceproviders from '../resource-providers';
import { NestedStack, NestedStackProps } from 'aws-cdk-lib';
import { Construct } from 'constructs';
import * as eks from "aws-cdk-lib/aws-eks";
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws-quickstart/eks-blueprints",
"version": "1.11.1",
"version": "1.11.2",
"license": "Apache-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down

0 comments on commit e753964

Please sign in to comment.