Skip to content

Commit

Permalink
ci: remove git credentials after checkout (nodejs#1477)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fdawgs authored and crysmags committed Feb 27, 2024
1 parent 9445481 commit 96943f8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/bench.yml
Expand Up @@ -11,6 +11,7 @@ jobs:
- name: Checkout Code
uses: actions/checkout@v3
with:
persist-credentials: false
ref: ${{ github.base_ref }}
- name: Setup Node
uses: actions/setup-node@v3
Expand All @@ -27,6 +28,8 @@ jobs:
steps:
- name: Checkout Code
uses: actions/checkout@v3
with:
persist-credentials: false
- name: Setup Node
uses: actions/setup-node@v3
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/fuzz.yml
Expand Up @@ -9,6 +9,8 @@ jobs:

steps:
- uses: actions/checkout@v3
with:
persist-credentials: false

- name: Setup Node
uses: actions/setup-node@v3
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/lint.yml
Expand Up @@ -5,6 +5,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
- uses: actions/setup-node@v3
with:
node-version: lts/*
Expand Down

0 comments on commit 96943f8

Please sign in to comment.