mirror of
https://github.com/wagoid/commitlint-github-action.git
synced 2025-11-07 08:06:54 +00:00
Merge pull request #411 from wagoid/ci/fix-unsafe-repository-issue
ci: set workspace directory as safe after checkout
This commit is contained in:
commit
0f5f7da0b6
2 changed files with 6 additions and 2 deletions
|
|
@ -14,7 +14,7 @@ jobs:
|
||||||
commitlint:
|
commitlint:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- uses: wagoid/commitlint-github-action@v4
|
- uses: wagoid/commitlint-github-action@v4
|
||||||
|
|
@ -134,7 +134,7 @@ jobs:
|
||||||
commitlint:
|
commitlint:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- uses: actions/setup-node@v2
|
- uses: actions/setup-node@v2
|
||||||
|
|
|
||||||
|
|
@ -8,4 +8,8 @@ else
|
||||||
export NODE_PATH=$NODE_PATH:/node_modules
|
export NODE_PATH=$NODE_PATH:/node_modules
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Since actions/checkout can be setup with a different user ID, we need to set the workspace as safe inside this action
|
||||||
|
# Info about the vunlerability: https://github.blog/2022-04-12-git-security-vulnerability-announced/
|
||||||
|
git config --global --add safe.directory "$GITHUB_WORKSPACE"
|
||||||
|
|
||||||
node /run.js
|
node /run.js
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue