Skip to content

Commit 4ea41d0

Browse files
authored
Merge branch 'main' into renovate/cloudquery-monorepo-modules
2 parents e932566 + 34f2fdb commit 4ea41d0

File tree

6 files changed

+22
-7
lines changed

6 files changed

+22
-7
lines changed

.github/.kodiak.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
version = 1
33

44
[approve]
5-
auto_approve_usernames = ["cq-bot"]
5+
auto_approve_usernames = ["cloudquery-ci"]
66

77
[merge.message]
88
body = "pull_request_body"

.github/workflows/example.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ jobs:
2222
include:
2323
- label: "without-v-prefix"
2424
dbversion: "postgres:latest"
25-
cloudquery-version: "6.35.2"
25+
cloudquery-version: "6.35.3"
2626
os: ubuntu-latest
2727
- label: "with-v-prefix"
2828
dbversion: "postgres:latest"
29-
cloudquery-version: "v6.35.2"
29+
cloudquery-version: "v6.35.3"
3030
os: ubuntu-latest
3131
fail-fast: false
3232
services:

.github/workflows/example_matrix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Setup CloudQuery
4242
uses: ./.
4343
with:
44-
version: "v6.35.2"
44+
version: "v6.35.3"
4545
- name: Sync with CloudQuery
4646
run: cloudquery sync example_configs/spec.yml --log-console --shard ${{ matrix.shard }}
4747
env:

.github/workflows/prepare.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,16 @@ jobs:
1010
prepare-dist:
1111
runs-on: ubuntu-latest
1212
steps:
13+
- name: Generate GitHub App token
14+
id: app-token
15+
uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3
16+
with:
17+
app-id: ${{ secrets.CQ_APP_ID }}
18+
private-key: ${{ secrets.CQ_APP_PRIVATE_KEY }}
19+
permission-contents: write
1320
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
1421
with:
15-
token: ${{ secrets.GH_CQ_BOT }}
22+
token: ${{ steps.app-token.outputs.token }}
1623
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
1724
with:
1825
node-version: "lts/*"

.github/workflows/release-please.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,14 @@ jobs:
1111
release-please:
1212
runs-on: ubuntu-latest
1313
steps:
14+
- name: Generate GitHub App token
15+
id: app-token
16+
uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3
17+
with:
18+
app-id: ${{ secrets.CQ_APP_ID }}
19+
private-key: ${{ secrets.CQ_APP_PRIVATE_KEY }}
20+
permission-contents: write
21+
permission-pull-requests: write
1422
- uses: GoogleCloudPlatform/release-please-action@16a9c90856f42705d54a6fda1823352bdc62cf38 # v4
1523
with:
16-
token: ${{ secrets.GH_CQ_BOT }}
24+
token: ${{ steps.app-token.outputs.token }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
name: Setup CloudQuery
3939
with:
4040
# Required. Must be a valid SemVer version
41-
version: 'v6.35.2'
41+
version: 'v6.35.3'
4242

4343
- name: Sync with CloudQuery
4444
run: cloudquery sync [file or directories...] --log-console

0 commit comments

Comments
 (0)