Skip to content

Commit 54dfa96

Browse files
Merge pull request #210 from malloydata/mtoy/actions-node24
ci: bump actions off deprecated node20 runtime
2 parents 5576097 + c192809 commit 54dfa96

3 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/debug-codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
6363
steps:
6464
- name: Checkout repository
65-
uses: actions/checkout@v4
65+
uses: actions/checkout@v6
6666

6767
# Add any setup steps before running the `github/codeql-action/init` action.
6868
# This includes steps like installing compilers or runtimes (`actions/setup-node`
@@ -72,7 +72,7 @@ jobs:
7272

7373
# Initializes the CodeQL tools for scanning.
7474
- name: Initialize CodeQL
75-
uses: github/codeql-action/init@v3
75+
uses: github/codeql-action/init@v4
7676
with:
7777
languages: ${{ matrix.language }}
7878
build-mode: ${{ matrix.build-mode }}
@@ -91,6 +91,6 @@ jobs:
9191
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
9292

9393
- name: Perform CodeQL Analysis
94-
uses: github/codeql-action/analyze@v3
94+
uses: github/codeql-action/analyze@v4
9595
with:
9696
category: "/language:${{matrix.language}}"

.github/workflows/npm-publish.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ jobs:
2525
packages: read
2626
id-token: write
2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v6
2929

30-
- uses: actions/setup-node@v4
30+
- uses: actions/setup-node@v6
3131
with:
3232
node-version: '24'
3333
- name: Upgrade npm for trusted publishing (OIDC)
3434
run: npm install -g npm@latest
3535

36-
- uses: 'google-github-actions/auth@v2'
36+
- uses: 'google-github-actions/auth@v3'
3737
with:
3838
credentials_json: '${{ secrets.BIGQUERY_KEY }}'
3939

@@ -87,22 +87,22 @@ jobs:
8787
steps:
8888
- name: Generate token from GitHub App
8989
id: app-token
90-
uses: actions/create-github-app-token@v1
90+
uses: actions/create-github-app-token@v3
9191
with:
9292
app-id: ${{ secrets.NPM_ACTIONS_APP_ID }}
9393
private-key: ${{ secrets.NPM_ACTIONS_PRIVATE_KEY }}
9494

95-
- uses: actions/checkout@v4
95+
- uses: actions/checkout@v6
9696
with:
9797
token: ${{ steps.app-token.outputs.token }}
9898

99-
- uses: actions/setup-node@v4
99+
- uses: actions/setup-node@v6
100100
with:
101101
node-version: '24'
102102
- name: Upgrade npm for trusted publishing (OIDC)
103103
run: npm install -g npm@latest
104104

105-
- uses: 'google-github-actions/auth@v2'
105+
- uses: 'google-github-actions/auth@v3'
106106
with:
107107
credentials_json: '${{ secrets.BIGQUERY_KEY }}'
108108

.github/workflows/test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ jobs:
2020
error_message: |
2121
User does not have write access to this repository. Refer to CONTRIBUTING.md instructions on how to contribute to Malloy.
2222
- name: Checkout
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v6
2424
with:
2525
ref: ${{ github.event.pull_request.head.sha || github.sha }}
2626
- name: GCloud auth
27-
uses: 'google-github-actions/auth@v2'
27+
uses: 'google-github-actions/auth@v3'
2828
with:
2929
credentials_json: '${{ secrets.BIGQUERY_KEY }}'
3030
- name: Use Node.js
31-
uses: actions/setup-node@v4
31+
uses: actions/setup-node@v6
3232
with:
3333
node-version: 24.x
3434
- name: Install

0 commit comments

Comments
 (0)