Skip to content

Commit 6c7cb37

Browse files
Merge branch 'main' into feat/hashing-configtype-time
2 parents 57854ba + da8e9b6 commit 6c7cb37

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

.github/renovate.json5

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
{
22
extends: [
3-
"github>cloudquery/.github//.github/renovate-go-default.json5",
4-
"github>cloudquery/.github//.github/renovate-node-default.json5",
3+
'github>cloudquery/.github//.github/renovate-go-default.json5',
4+
'github>cloudquery/.github//.github/renovate-node-default.json5',
55
],
66
packageRules: [
77
{
8-
matchPackagePatterns: ["github.com/cloudquery/plugin-sdk/*"],
9-
commitMessagePrefix: "chore(deps): ",
8+
commitMessagePrefix: 'chore(deps): ',
9+
matchPackageNames: [
10+
'/github.com/cloudquery/plugin-sdk/*/',
11+
],
1012
},
1113
],
1214
}

.github/workflows/lint_golang.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
golangci:
1212
name: Lint with GolangCI
13-
runs-on: large-ubuntu-plugin-sdk
13+
runs-on: ubicloud-standard-8
1414
timeout-minutes: 10
1515
steps:
1616
- uses: actions/checkout@v4

.github/workflows/unittest.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
unitests:
1212
strategy:
1313
matrix:
14-
os: [large-ubuntu-plugin-sdk, large-windows-plugin-sdk, macos-latest]
14+
os: [ubicloud-standard-8, large-windows-plugin-sdk, macos-latest]
1515
runs-on: ${{ matrix.os }}
1616
timeout-minutes: 15
1717
steps:
@@ -26,13 +26,13 @@ jobs:
2626
- name: Run tests
2727
run: make test
2828
- name: Run benchmark
29-
if: matrix.os == 'large-ubuntu-plugin-sdk'
29+
if: matrix.os == 'ubicloud-standard-8'
3030
run: make benchmark-ci
3131
- name: Save PR number
32-
if: matrix.os == 'large-ubuntu-plugin-sdk' && github.event_name == 'pull_request'
32+
if: matrix.os == 'ubicloud-standard-8' && github.event_name == 'pull_request'
3333
run: echo ${{ github.event.number }} > ./pr_number
3434
- name: Upload deltas
35-
if: matrix.os == 'large-ubuntu-plugin-sdk'
35+
if: matrix.os == 'ubicloud-standard-8'
3636
uses: actions/upload-artifact@v4
3737
with:
3838
name: delta-action-benchmarks

0 commit comments

Comments
 (0)