mirror of
https://github.com/actions/publish-action.git
synced 2025-12-10 03:36:43 +00:00
* Update Node.js runtime to node24 in action.yml Changed the GitHub Action runtime from node20 to node24 to ensure compatibility with newer Node.js features and security updates. * Update basic-validation.yml * Upgrade to node24 upgrade to node24 * package.json version update --------- Co-authored-by: Aparna Jyothi <aparnajyothi-y@github.com>
18 lines
560 B
YAML
18 lines
560 B
YAML
name: 'Publish action versions'
|
|
description: 'Move the major version tag to point to a specified ref'
|
|
inputs:
|
|
source-tag:
|
|
description: 'Tag name that the major tag will point to. Examples: v1.2.3, 1.2.3'
|
|
required: true
|
|
slack-webhook:
|
|
description: 'Slack Webhook URL to post a message'
|
|
token:
|
|
description: 'Token to get an authenticated Octokit'
|
|
default: ${{ github.token }}
|
|
outputs:
|
|
major-tag:
|
|
description: 'The major version tag that has been updated (created). Examples: v1, 1'
|
|
runs:
|
|
using: 'node24'
|
|
main: 'dist/index.js'
|