mirror of
https://github.com/rlespinasse/github-slug-action.git
synced 2026-06-13 10:01:12 +00:00
ci: use checkout v3
This commit is contained in:
8
.github/workflows/codeql-analysis.yml
vendored
8
.github/workflows/codeql-analysis.yml
vendored
@@ -1,4 +1,4 @@
|
|||||||
name: "[v3] CodeQL"
|
name: '[v3] CodeQL'
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
@@ -8,7 +8,7 @@ on:
|
|||||||
branches:
|
branches:
|
||||||
- v3.x
|
- v3.x
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "0 6 * * 1"
|
- cron: '0 6 * * 1'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
analyse:
|
analyse:
|
||||||
@@ -17,10 +17,10 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
language: ["javascript"]
|
language: ['javascript']
|
||||||
steps:
|
steps:
|
||||||
- uses: technote-space/auto-cancel-redundant-workflow@v1
|
- uses: technote-space/auto-cancel-redundant-workflow@v1
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
- uses: github/codeql-action/init@v1
|
- uses: github/codeql-action/init@v1
|
||||||
with:
|
with:
|
||||||
languages: ${{ matrix.language }}
|
languages: ${{ matrix.language }}
|
||||||
|
|||||||
4
.github/workflows/github-slug.yml
vendored
4
.github/workflows/github-slug.yml
vendored
@@ -1,4 +1,4 @@
|
|||||||
name: "[v3] Testing"
|
name: '[v3] Testing'
|
||||||
on: [push]
|
on: [push]
|
||||||
jobs:
|
jobs:
|
||||||
github-slug-on-os:
|
github-slug-on-os:
|
||||||
@@ -9,7 +9,7 @@ jobs:
|
|||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
- run: npm install
|
- run: npm install
|
||||||
- run: npm run all
|
- run: npm run all
|
||||||
- uses: ./
|
- uses: ./
|
||||||
|
|||||||
6
.github/workflows/release-dryrun.yml
vendored
6
.github/workflows/release-dryrun.yml
vendored
@@ -10,7 +10,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: technote-space/auto-cancel-redundant-workflow@v1
|
- uses: technote-space/auto-cancel-redundant-workflow@v1
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
- run: npm install
|
- run: npm install
|
||||||
- run: npm run all
|
- run: npm run all
|
||||||
- uses: ./
|
- uses: ./
|
||||||
@@ -20,10 +20,6 @@ jobs:
|
|||||||
[
|
[
|
||||||
"${{ env.GITHUB_REF_NAME }}"
|
"${{ env.GITHUB_REF_NAME }}"
|
||||||
]
|
]
|
||||||
extra_plugins: |
|
|
||||||
@semantic-release/changelog
|
|
||||||
@semantic-release/exec
|
|
||||||
@semantic-release/git
|
|
||||||
dry_run: true
|
dry_run: true
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|||||||
7
.github/workflows/release.yml
vendored
7
.github/workflows/release.yml
vendored
@@ -10,14 +10,9 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: technote-space/auto-cancel-redundant-workflow@v1
|
- uses: technote-space/auto-cancel-redundant-workflow@v1
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
- run: npm install
|
- run: npm install
|
||||||
- run: npm run all
|
- run: npm run all
|
||||||
- uses: cycjimmy/semantic-release-action@v3
|
- uses: cycjimmy/semantic-release-action@v3
|
||||||
with:
|
|
||||||
extra_plugins: |
|
|
||||||
@semantic-release/changelog
|
|
||||||
@semantic-release/exec
|
|
||||||
@semantic-release/git
|
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|||||||
Reference in New Issue
Block a user