Skip to content

Commit 181bc05

Browse files
Merge branch 'main' into generate-license-artifacts
2 parents e233bdd + 92f0a48 commit 181bc05

16 files changed

+82276
-36
lines changed

.github/workflows/cdktf-provider-docs-rollout.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
languages: "typescript,python"
4848
parallelFileConversions: 1
4949
maxRunners: 1
50-
cdktfRegistryDocsVersion: "1.21.0"
50+
cdktfRegistryDocsVersion: "1.26.0"
5151

5252
reportFailureToSlack:
5353
needs: cdktfDocs

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
GIT_SHA=$(git rev-parse HEAD)
4747
echo "git-sha=$GIT_SHA" >> $GITHUB_OUTPUT
4848
- name: Build and push
49-
uses: docker/build-push-action@5176d81f87c23d6fc96624dfdbcd9f3830bbe445 # v6.5.0
49+
uses: docker/build-push-action@5cd11c3a4ced054e52742c5fd54dca954e0edd85 # v6.7.0
5050
with:
5151
pull: true
5252
push: true

.github/workflows/integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,13 @@ jobs:
6868
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
6969
GOCACHE: ${{ steps.global-cache-dir-path.outputs.go }}
7070
- name: Upload dist
71-
uses: actions/upload-artifact@89ef406dd8d7e03cfd12d9e0a4a378f454709029 # v4.3.5
71+
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
7272
if: ${{ !inputs.skip_setup }}
7373
with:
7474
name: dist
7575
path: dist
7676
- name: Upload edge-provider bindings
77-
uses: actions/upload-artifact@89ef406dd8d7e03cfd12d9e0a4a378f454709029 # v4.3.5
77+
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
7878
if: ${{ !inputs.skip_setup }}
7979
with:
8080
name: edge-provider-bindings

.github/workflows/pr-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
# will suggest using that commit message instead of the PR title for the
4848
# merge commit, and it's easy to commit this by mistake. Enable this option
4949
# to also validate the commit message for one commit PRs.
50-
validateSingleCommit: true
50+
validateSingleCommit: false
5151

5252
subjectPatternError: |
5353
The subject "{subject}" found in the pull request title "{title}" does not match the required format.

.github/workflows/provider-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
cd test && yarn
7474
- name: Upload dist
7575
if: ${{ !inputs.skip_setup }}
76-
uses: actions/upload-artifact@89ef406dd8d7e03cfd12d9e0a4a378f454709029 # v4.3.5
76+
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
7777
with:
7878
name: dist
7979
path: dist

.github/workflows/registry-docs-pr-based.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ on:
5353
cdktfRegistryDocsVersion:
5454
description: "Version of cdktf-registry-docs to use"
5555
required: false
56-
default: "1.21.0"
56+
default: "1.26.0"
5757
type: string
5858
secrets:
5959
GH_PR_TOKEN:
@@ -119,7 +119,7 @@ jobs:
119119
- name: Setup Node.js
120120
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
121121
with:
122-
node-version: "18.x"
122+
node-version: "20.x"
123123

124124
- name: Install cdktf-registry-docs
125125
run: npm install -g cdktf-registry-docs@${{ inputs.cdktfRegistryDocsVersion }}
@@ -164,7 +164,7 @@ jobs:
164164
- name: Setup Node.js
165165
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
166166
with:
167-
node-version: "18.x"
167+
node-version: "20.x"
168168

169169
- name: Install cdktf-registry-docs
170170
run: npm install -g cdktf-registry-docs@${{ inputs.cdktfRegistryDocsVersion }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,12 @@ jobs:
6868
env:
6969
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_TOKEN }}
7070
- name: Upload artifact
71-
uses: actions/upload-artifact@89ef406dd8d7e03cfd12d9e0a4a378f454709029 # v4.3.5
71+
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
7272
with:
7373
name: dist
7474
path: dist
7575
- name: Upload edge-provider bindings
76-
uses: actions/upload-artifact@89ef406dd8d7e03cfd12d9e0a4a378f454709029 # v4.3.5
76+
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
7777
if: ${{ !inputs.skip_setup }}
7878
with:
7979
name: edge-provider-bindings

.github/workflows/release_next.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,12 @@ jobs:
7474
env:
7575
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_TOKEN }}
7676
- name: Upload artifact
77-
uses: actions/upload-artifact@89ef406dd8d7e03cfd12d9e0a4a378f454709029 # v4.3.5
77+
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
7878
with:
7979
name: dist
8080
path: dist
8181
- name: Upload edge-provider bindings
82-
uses: actions/upload-artifact@89ef406dd8d7e03cfd12d9e0a4a378f454709029 # v4.3.5
82+
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
8383
if: ${{ !inputs.skip_setup }}
8484
with:
8585
name: edge-provider-bindings

.github/workflows/yarn-upgrade.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
git add .
6464
git diff --patch --staged > ./upgrade.patch
6565
- name: Upload Patch
66-
uses: actions/upload-artifact@89ef406dd8d7e03cfd12d9e0a4a378f454709029 # v4.3.5
66+
uses: actions/upload-artifact@834a144ee995460fba8ed112a2fc961b36a5ec5a # v4.3.6
6767
with:
6868
name: upgrade.patch
6969
path: ./upgrade.patch

0 commit comments

Comments
 (0)