Skip to content

Commit

Permalink
Build fixes (#829)
Browse files Browse the repository at this point in the history
  • Loading branch information
stack72 committed Nov 10, 2020
1 parent 1670dc6 commit 858384c
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
go-version: [1.15.x]
node-version: [14.x]
python-version: [3.7]
dotnet-version: [3.1.x ]
dotnet-version: [3.1.x]
examples-test-matrix: ['--no-latest-cli', '--no-latest-packages']
runs-on: ${{ matrix.platform }}
steps:
Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:
go-version: [1.15.x]
node-version: [14.x]
python-version: [3.7]
dotnet-version: [3.1.100]
dotnet-version: [3.1.x]
runs-on: ${{ matrix.platform }}
steps:
- name: Install DotNet ${{ matrix.dotnet-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
matrix:
platform: [ ubuntu-latest ]
yarn-version: [ 1.13.0 ]
node-version: [ 12.x ]
node-version: [ 14.x ]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
Expand Down
12 changes: 6 additions & 6 deletions azure-ts-dynamicresource/cdnCustomDomain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -184,10 +184,10 @@ class CDNCustomDomainResourceProvider implements pulumi.dynamic.ResourceProvider
customDomainHttpsParameters: {
certificateSource: "Cdn",
certificateSourceParameters: {
certificateType: "Dedicated"
certificateType: "Dedicated",
},
protocolType: "ServerNameIndication"
}
protocolType: "ServerNameIndication",
},
});
}

Expand Down Expand Up @@ -248,10 +248,10 @@ class CDNCustomDomainResourceProvider implements pulumi.dynamic.ResourceProvider
customDomainHttpsParameters: {
certificateSource: "Cdn",
certificateSourceParameters: {
certificateType: "Dedicated"
certificateType: "Dedicated",
},
protocolType: "ServerNameIndication"
}
protocolType: "ServerNameIndication",
},
});

currentOutputs.httpsEnabled = true;
Expand Down
2 changes: 1 addition & 1 deletion digitalocean-ts-k8s/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const domainName = config.get("domainName");
// kubeconfig to make it easy to access from the kubectl command line.
const cluster = new digitalocean.KubernetesCluster("do-cluster", {
region: digitalocean.Regions.SFO2,
version: digitalocean.getKubernetesVersions({versionPrefix: "1.16"}).then(p => p.latestVersion),
version: digitalocean.getKubernetesVersions().then(p => p.latestVersion),
nodePool: {
name: "default",
size: digitalocean.DropletSlugs.DropletS2VCPU2GB,
Expand Down
4 changes: 2 additions & 2 deletions gcp-ts-cloudrun/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const iamHello = new gcp.cloudrun.IamMember("hello-everyone", {
});

// Export the URL
export const helloUrl = helloService.status.url;
export const helloUrl = helloService.statuses[0].url;


// -------------------------------------- //
Expand Down Expand Up @@ -80,4 +80,4 @@ const iamRuby = new gcp.cloudrun.IamMember("ruby-everyone", {
});

// Export the URL
export const rubyUrl = rubyService.status.url;
export const rubyUrl = rubyService.statuses[0].url;

0 comments on commit 858384c

Please sign in to comment.