mirror of
https://github.com/rlespinasse/github-slug-action.git
synced 2026-05-17 18:35:07 +00:00
feat: use node16 as action run mode
This commit is contained in:
committed by
GitHub
parent
ae2f6b069b
commit
7bf92d88ff
11
.github/workflows/codeql-analysis.yml
vendored
11
.github/workflows/codeql-analysis.yml
vendored
@@ -10,6 +10,10 @@ on:
|
||||
schedule:
|
||||
- cron: '0 6 * * 1'
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
analyse:
|
||||
name: analyze
|
||||
@@ -19,10 +23,9 @@ jobs:
|
||||
matrix:
|
||||
language: ['javascript']
|
||||
steps:
|
||||
- uses: technote-space/auto-cancel-redundant-workflow@v1
|
||||
- uses: actions/checkout@v3
|
||||
- uses: github/codeql-action/init@v1
|
||||
- uses: github/codeql-action/init@v2
|
||||
with:
|
||||
languages: ${{ matrix.language }}
|
||||
- uses: github/codeql-action/autobuild@v1
|
||||
- uses: github/codeql-action/analyze@v1
|
||||
- uses: github/codeql-action/autobuild@v2
|
||||
- uses: github/codeql-action/analyze@v2
|
||||
|
||||
2
.github/workflows/github-slug.yml
vendored
2
.github/workflows/github-slug.yml
vendored
@@ -11,7 +11,9 @@ jobs:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
- run: npm install
|
||||
shell: bash
|
||||
- run: npm run all
|
||||
shell: bash
|
||||
- uses: ./
|
||||
- name: Partial variables
|
||||
run: |
|
||||
|
||||
6
.github/workflows/release-dryrun.yml
vendored
6
.github/workflows/release-dryrun.yml
vendored
@@ -5,14 +5,18 @@ on:
|
||||
branches-ignore:
|
||||
- v*.x
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
|
||||
jobs:
|
||||
release-dryrun:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: technote-space/auto-cancel-redundant-workflow@v1
|
||||
- uses: actions/checkout@v3
|
||||
- run: npm install
|
||||
shell: bash
|
||||
- run: npm run all
|
||||
shell: bash
|
||||
- uses: ./
|
||||
- uses: cycjimmy/semantic-release-action@v3
|
||||
with:
|
||||
|
||||
6
.github/workflows/release.yml
vendored
6
.github/workflows/release.yml
vendored
@@ -5,14 +5,18 @@ on:
|
||||
branches:
|
||||
- v*.x
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
|
||||
jobs:
|
||||
release:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: technote-space/auto-cancel-redundant-workflow@v1
|
||||
- uses: actions/checkout@v3
|
||||
- run: npm install
|
||||
shell: bash
|
||||
- run: npm run all
|
||||
shell: bash
|
||||
- uses: cycjimmy/semantic-release-action@v3
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
@@ -2,7 +2,7 @@ name: "GitHub Slug Action"
|
||||
description: "GitHub Action to expose slug value of environment variables inside your GitHub workflow"
|
||||
author: 'rlespinasse'
|
||||
runs:
|
||||
using: 'node12'
|
||||
using: 'node16'
|
||||
main: 'dist/index.js'
|
||||
branding:
|
||||
icon: "minimize"
|
||||
|
||||
3529
dist/index.js
vendored
3529
dist/index.js
vendored
File diff suppressed because it is too large
Load Diff
2
dist/index.js.map
vendored
2
dist/index.js.map
vendored
File diff suppressed because one or more lines are too long
3913
dist/sourcemap-register.js
vendored
3913
dist/sourcemap-register.js
vendored
File diff suppressed because one or more lines are too long
11695
package-lock.json
generated
11695
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -35,7 +35,7 @@
|
||||
"@types/jest": "^26.0.24",
|
||||
"@types/node": "^14.18.25",
|
||||
"@typescript-eslint/eslint-plugin": "^5.38.1",
|
||||
"@vercel/ncc": "^0.23.0",
|
||||
"@vercel/ncc": "^0.36.1",
|
||||
"eslint": "^8.0.1",
|
||||
"eslint-plugin-github": "^4.3.7",
|
||||
"eslint-plugin-jest": "^23.20.0",
|
||||
|
||||
Reference in New Issue
Block a user