Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build fixes #829

Merged
merged 4 commits into from
Nov 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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;