From d0dafc40974223a84cd14f4b19c75b3844741ca3 Mon Sep 17 00:00:00 2001 From: Jeffrey Aven Date: Sat, 14 Mar 2026 16:54:27 +1100 Subject: [PATCH 1/3] updated setup-stackql --- action.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/action.yml b/action.yml index 934eef1..7c70fcc 100644 --- a/action.yml +++ b/action.yml @@ -60,7 +60,7 @@ runs: fi - name: Setup StackQL - uses: stackql/setup-stackql@v2.2.3 + uses: stackql/setup-stackql@v2.3.0 if: ${{steps.check-stackql.outputs.stackql_installed == 'false'}} with: use_wrapper: true @@ -72,7 +72,7 @@ runs: - name: Setup auth id: setup-auth - uses: actions/github-script@v7.0.1 + uses: actions/github-script@v8 with: script: | const path = require('path'); @@ -84,7 +84,7 @@ runs: AUTH_STR: ${{inputs.auth_str}} - name: get stackql command - uses: actions/github-script@v7.0.1 + uses: actions/github-script@v8 with: script: | const path = require('path'); @@ -100,7 +100,7 @@ runs: VARS: ${{inputs.vars}} - name: execute stackql command - uses: actions/github-script@v7.0.1 + uses: actions/github-script@v8 id: exec-stackql with: script: | From 66694795beb50231da4eb1b408800487194dc438 Mon Sep 17 00:00:00 2001 From: Jeffrey Aven Date: Sat, 14 Mar 2026 17:06:00 +1100 Subject: [PATCH 2/3] updated action versions --- .github/workflows/npm-test.yml | 7 +++---- .github/workflows/stackql-exec-test.yml | 2 +- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/npm-test.yml b/.github/workflows/npm-test.yml index 0193f73..837459c 100644 --- a/.github/workflows/npm-test.yml +++ b/.github/workflows/npm-test.yml @@ -7,11 +7,10 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4.1.3 + - uses: actions/checkout@v6 - name: Setup Node.js environment - uses: actions/setup-node@v4.1.0 + uses: actions/setup-node@v6 with: node-version: 18 - run: npm ci - - run: npm test - \ No newline at end of file + - run: npm test \ No newline at end of file diff --git a/.github/workflows/stackql-exec-test.yml b/.github/workflows/stackql-exec-test.yml index 9f23d7c..4c70969 100644 --- a/.github/workflows/stackql-exec-test.yml +++ b/.github/workflows/stackql-exec-test.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4.1.3 + uses: actions/checkout@v6 # # run a query that does not return data (using the `is_command` input) From 8cd1af42dcf5ed695cb78a77adfaf6c837fcfc7c Mon Sep 17 00:00:00 2001 From: Jeffrey Aven Date: Sun, 15 Mar 2026 09:39:52 +1100 Subject: [PATCH 3/3] use latest setup-stackql --- .github/workflows/npm-test.yml | 2 +- action.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/npm-test.yml b/.github/workflows/npm-test.yml index 837459c..e62b885 100644 --- a/.github/workflows/npm-test.yml +++ b/.github/workflows/npm-test.yml @@ -11,6 +11,6 @@ jobs: - name: Setup Node.js environment uses: actions/setup-node@v6 with: - node-version: 18 + node-version: 24 - run: npm ci - run: npm test \ No newline at end of file diff --git a/action.yml b/action.yml index 7c70fcc..9164ece 100644 --- a/action.yml +++ b/action.yml @@ -60,7 +60,7 @@ runs: fi - name: Setup StackQL - uses: stackql/setup-stackql@v2.3.0 + uses: stackql/setup-stackql@v2 if: ${{steps.check-stackql.outputs.stackql_installed == 'false'}} with: use_wrapper: true