Skip to content

Commit eaa075d

Browse files
authored
chore: Update CLI in examples (#478)
1 parent 06ba781 commit eaa075d

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/example.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
dbversion: ['postgres:latest']
19-
cloudquery-version: ['4.3.4', 'v4.3.4']
19+
cloudquery-version: ['5.12.1', 'v5.12.1']
2020
os: [ubuntu-latest]
2121
fail-fast: false
2222
services:

.github/workflows/example_matrix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
- name: Setup CloudQuery
4646
uses: ./.
4747
with:
48-
version: 'v4.3.4'
48+
version: 'v5.12.1'
4949
- name: Sync with CloudQuery
5050
run: cloudquery sync example_configs/parallel.yml --log-console
5151
env:

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The following is a set of guidelines for contributing to this repository.
88
## Prerequisites
99

1010
- Fork and clone this repository. If you're not sure how to do it follow [this getting started guide](https://egghead.io/courses/how-to-contribute-to-an-open-source-project-on-github).
11-
- [Node.js](https://nodejs.org/en/) installed with a version greater or equal to 16.
11+
- [Node.js](https://nodejs.org/en/) installed with a version greater or equal to 20.
1212

1313
## Setup
1414

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,20 +25,20 @@ jobs:
2525
runs-on: ubuntu-latest
2626
steps:
2727
# Checkout a git repository with a pre-existing CloudQuery configuration files
28-
- uses: actions/checkout@v3
28+
- uses: actions/checkout@v4
2929

3030
# Setup AWS credentials (example)
3131
- name: Configure AWS credentials
32-
uses: aws-actions/configure-aws-credentials@v1
32+
uses: aws-actions/configure-aws-credentials@v4
3333
with:
3434
role-to-assume: <role-arn>
3535
aws-region: <region>
3636

37-
- uses: cloudquery/setup-cloudquery@v2
37+
- uses: cloudquery/setup-cloudquery@v3
3838
name: Setup CloudQuery
3939
with:
4040
# Required. Must be a valid SemVer version
41-
version: 'v3.9.0'
41+
version: 'v5.12.1'
4242

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

0 commit comments

Comments
 (0)