mirror of
https://github.com/actions/labeler.git
synced 2025-12-11 03:58:05 +00:00
* Update Node.js version to 24 in action and dependencies Bump the required Node.js version to 24 in action.yml and package.json. Update @types/node to ^24.1.0 to match the new Node.js version. * package.json version update * update to the latest versions --------- Co-authored-by: Aparna Jyothi <aparnajyothi-y@github.com>
21 lines
375 B
YAML
21 lines
375 B
YAML
name: 'Publish Immutable Action Version'
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
publish:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
id-token: write
|
|
packages: write
|
|
|
|
steps:
|
|
- name: Checking out
|
|
uses: actions/checkout@v5
|
|
- name: Publish
|
|
id: publish
|
|
uses: actions/publish-immutable-action@0.0.3
|