Skip to content

Commit e811897

Browse files
authored
Merge pull request #64 from FranzDiebold/chore/update-dependencies
Chore/update dependencies
2 parents 1791216 + 727800e commit e811897

9 files changed

Lines changed: 7666 additions & 5377 deletions

File tree

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.209.6/containers/javascript-node/.devcontainer/base.Dockerfile
22

33
# [Choice] Node.js version (use -bullseye variants on local arm64/Apple Silicon): 16, 14, 12, 16-bullseye, 14-bullseye, 12-bullseye, 16-buster, 14-buster, 12-buster
4-
ARG VARIANT="20-bullseye"
4+
ARG VARIANT="24-bullseye"
55
FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:0-${VARIANT}
66

77
# [Optional] Uncomment this section to install additional OS packages.

.devcontainer/devcontainer.json

Lines changed: 25 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,32 @@
1-
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
2-
// https://github.com/microsoft/vscode-dev-containers/tree/v0.209.6/containers/javascript-node
1+
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
2+
// README at: https://github.com/devcontainers/templates/tree/main/src/javascript-node
33
{
44
"name": "Node.js",
5-
"build": {
6-
"dockerfile": "Dockerfile",
7-
// Update 'VARIANT' to pick a Node version: 16, 14, 12.
8-
// Append -bullseye or -buster to pin to an OS version.
9-
// Use -bullseye variants on local arm64/Apple Silicon.
10-
"args": {
11-
"VARIANT": "20"
12-
}
5+
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6+
"image": "mcr.microsoft.com/devcontainers/javascript-node:4-24-trixie",
7+
"features": {
8+
"ghcr.io/devcontainers/features/github-cli:1": {}
139
},
14-
// Set *default* container specific settings.json values on container create.
15-
"settings": {},
16-
// Add the IDs of extensions you want installed when the container is created.
17-
"extensions": [
18-
"dbaeumer.vscode-eslint"
19-
],
10+
"customizations": {
11+
"vscode": {
12+
"extensions": [
13+
"dbaeumer.vscode-eslint"
14+
]
15+
}
16+
}
17+
18+
// Features to add to the dev container. More info: https://containers.dev/features.
19+
// "features": {},
20+
2021
// Use 'forwardPorts' to make a list of ports inside the container available locally.
2122
// "forwardPorts": [],
23+
2224
// Use 'postCreateCommand' to run commands after the container is created.
2325
// "postCreateCommand": "yarn install",
24-
// Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
25-
"remoteUser": "node"
26-
}
26+
27+
// Configure tool-specific properties.
28+
// "customizations": {},
29+
30+
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
31+
// "remoteUser": "root"
32+
}

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
persist-credentials: false
1212
- uses: actions/setup-node@v4
1313
with:
14-
node-version: 20
14+
node-version: 24
1515
- name: Install dependencies
1616
run: make install
1717
- name: Lint

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v20
1+
v24

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![GitHub Action: View on Marketplace](https://img.shields.io/badge/GitHub%20Action-View_on_Marketplace-28a745?logo=github)](https://github.com/marketplace/actions/github-environment-variables-action)
44
[![Demo: available](https://img.shields.io/badge/Demo-available-orange)](.github/workflows/demo.yml)
5-
[![Version: v2.8.0](https://img.shields.io/badge/Version-v2.8.0-brightgreen)](https://github.com/FranzDiebold/github-env-vars-action/releases/tag/v2.8.0)
5+
[![Version: v2.9.0](https://img.shields.io/badge/Version-v2.9.0-brightgreen)](https://github.com/FranzDiebold/github-env-vars-action/releases/tag/v2.9.0)
66
[![Lint and Test](https://github.com/FranzDiebold/github-env-vars-action/workflows/Lint%20and%20Test/badge.svg)](https://github.com/FranzDiebold/github-env-vars-action/actions?query=workflow%3A%22Lint+and+Test%22)
77
[![license: MIT](https://img.shields.io/badge/license-MIT-brightgreen.svg)](./LICENSE)
88

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: 'GitHub Environment Variables Action'
22
description: 'Expose useful Environment Variables.'
33
author: 'Franz Diebold'
44
runs:
5-
using: 'node20'
5+
using: 'node24'
66
main: 'dist/index.js'
77
branding:
88
icon: 'plus-circle'

0 commit comments

Comments
 (0)