Skip to content

Commit

Permalink
Merge pull request #35 from Particular/node-update
Browse files Browse the repository at this point in the history
Update to Node20
  • Loading branch information
bording authored Feb 20, 2024
2 parents 61090b2 + ed3d32d commit 7499e36
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG VARIANT=16-bullseye
ARG VARIANT=20
FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:0-${VARIANT}
RUN npm i -g @vercel/ncc

Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Dev",
"build": {
"dockerfile": "Dockerfile",
"args": { "VARIANT": "18" }
"args": { "VARIANT": "20" }
},

"customizations": {
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,27 +11,27 @@ on:
workflow_dispatch:
jobs:
ci:
name: ${{ matrix.os-name }}-${{ matrix.init-script.label }}
name: ${{ matrix.name }}-${{ matrix.init-script.label }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-2019, ubuntu-20.04]
os: [windows-2022, ubuntu-22.04]
init-script:
- label: 'init-script'
path: './.github/workflows/scripts/init.sql'
- label: 'no-init-script'
path: ''
include:
# Add os-name alias for job name
- os: windows-2019
os-name: Windows
- os: ubuntu-20.04
os-name: Linux
- os: windows-2022
name: Windows
- os: ubuntu-22.04
name: Linux
fail-fast: false
steps:
- name: Checkout
uses: actions/[email protected]
- name: Azure login
if: matrix.os-name == 'Windows'
if: matrix.name == 'Windows'
uses: azure/[email protected]
with:
creds: ${{ secrets.AZURE_ACI_CREDENTIALS }}
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ inputs:
description: The path to a script to execute in SQL Plus when the database is available. The script is executed by system user and may be used to initialize the database with additional users, permissions and more.
required: false
runs:
using: node16
using: node20
main: dist/index.js
post: dist/index.js

0 comments on commit 7499e36

Please sign in to comment.