diff --git a/.github/workflows/npm-test.yml b/.github/workflows/npm-test.yml index 5d2106f..0193f73 100644 --- a/.github/workflows/npm-test.yml +++ b/.github/workflows/npm-test.yml @@ -8,10 +8,10 @@ jobs: steps: - uses: actions/checkout@v4.1.3 - - name: Use Node.js 16 - uses: actions/setup-node@v4.0.2 + - name: Setup Node.js environment + uses: actions/setup-node@v4.1.0 with: - node-version: 16.x + node-version: 18 - run: npm ci - run: npm test \ No newline at end of file diff --git a/action.yml b/action.yml index bc17d24..934eef1 100644 --- a/action.yml +++ b/action.yml @@ -60,7 +60,7 @@ runs: fi - name: Setup StackQL - uses: stackql/setup-stackql@v2.2.2 + uses: stackql/setup-stackql@v2.2.3 if: ${{steps.check-stackql.outputs.stackql_installed == 'false'}} with: use_wrapper: true diff --git a/stackql_scripts/google-instances-by-status.iql b/stackql_scripts/google-instances-by-status.iql index 004316d..558abd2 100644 --- a/stackql_scripts/google-instances-by-status.iql +++ b/stackql_scripts/google-instances-by-status.iql @@ -1,4 +1,4 @@ SELECT status, count(*) as num_instances FROM google.compute.instances -WHERE project = 'stackql-demo' +WHERE project = 'stackql-integration-tests' GROUP BY status; \ No newline at end of file