Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/actions_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
tag:
description: "Tag for the release"
required: true
node_version:
description: "Specify Node.js version (e.g., '18', '20', 'lts/*')"
required: false
default: "24"

permissions:
contents: read
Expand All @@ -19,4 +23,5 @@ jobs:

uses: step-security/reusable-workflows/.github/workflows/actions_release.yaml@v1
with:
tag: "${{ github.event.inputs.tag }}"
tag: "${{ github.event.inputs.tag }}"
node_version: "${{ github.event.inputs.node_version }}"
5 changes: 5 additions & 0 deletions .github/workflows/audit_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ on:
description: "Specify a base branch"
required: false
default: "main"
node_version:
description: "Specify Node.js version (e.g., '18', '20', 'lts/*')"
required: false
default: "24"
schedule:
- cron: "0 0 * * 1"

Expand All @@ -20,6 +24,7 @@ jobs:
with:
force: ${{ inputs.force || false }}
base_branch: ${{ inputs.base_branch || 'main' }}
node_version: "${{ inputs.node_version || '24' }}"

permissions:
contents: write
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/auto_cherry_pick.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ on:
description: "Base branch to create the PR against"
required: true
default: "main"
node_version:
description: "Specify Node.js version (e.g., '18', '20', 'lts/*')"
required: false
default: "24"

permissions:
contents: write
Expand All @@ -21,3 +25,4 @@ jobs:
original-owner: "arduino"
repo-name: "setup-protoc"
base_branch: ${{ inputs.base_branch }}
node_version: "${{ inputs.node_version || '24' }}"
2 changes: 1 addition & 1 deletion .github/workflows/check-markdown-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Check Markdown

env:
# See: https://github.com/actions/setup-node/#readme
NODE_VERSION: 20.x
NODE_VERSION: 24.x

# See: https://docs.github.com/actions/using-workflows/events-that-trigger-workflows
on:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-npm-dependencies-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Check npm Dependencies

env:
# See: https://github.com/actions/setup-node/#readme
NODE_VERSION: 20.x
NODE_VERSION: 24.x

# See: https://docs.github.com/actions/using-workflows/events-that-trigger-workflows
on:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-npm-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Check npm

env:
# See: https://github.com/actions/setup-node/#readme
NODE_VERSION: 20.x
NODE_VERSION: 24.x

# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows
on:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-packaging-ncc-typescript-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Check Packaging

env:
# See: https://github.com/actions/setup-node/#readme
NODE_VERSION: 20.x
NODE_VERSION: 24.x

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-taskfiles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Check Taskfiles

env:
# See: https://github.com/actions/setup-node/#readme
NODE_VERSION: 20.x
NODE_VERSION: 24.x

# See: https://docs.github.com/actions/using-workflows/events-that-trigger-workflows
on:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-tsconfig-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Check TypeScript Configuration

env:
# See: https://github.com/actions/setup-node/#readme
NODE_VERSION: 20.x
NODE_VERSION: 24.x

# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows
on:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-typescript-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Check TypeScript

env:
# See: https://github.com/actions/setup-node/#readme
NODE_VERSION: 20.x
NODE_VERSION: 24.x

# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows
on:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Set Node.js 20.x
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: 20.x
node-version: 24.x

- name: npm install
run: npm install
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
[![StepSecurity Maintained Action](https://raw.githubusercontent.com/step-security/maintained-actions-assets/main/assets/maintained-action-banner.png)](https://docs.stepsecurity.io/actions/stepsecurity-maintained-actions)

# setup-protoc

[![Check npm Dependencies status](https://github.com/step-security/setup-protoc/actions/workflows/check-npm-dependencies-task.yml/badge.svg)](https://github.com/step-security/setup-protoc/actions/workflows/check-npm-dependencies-task.yml)
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ outputs:
path:
description: 'Path to where the protoc compiler has been installed'
runs:
using: 'node20'
using: 'node24'
main: 'dist/index.js'
branding:
icon: 'box'
Expand Down
Loading
Loading