Skip to content

Commit

Permalink
ci: disable checkout.persist-credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
alxndrsn committed Mar 24, 2024
1 parent 1f58173 commit 0e664a6
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: ./.github/actions/install-deps
with:
node-version: ${{ env.NODE_VERSION }}
Expand All @@ -32,6 +34,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- run: sudo apt-get install shellcheck
- run: git ls-files '*.sh' | xargs shellcheck

Expand All @@ -58,6 +62,8 @@ jobs:
SKIP_MIGRATION: 1
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: ./.github/actions/install-deps
with:
node-version: ${{ matrix.node }}
Expand Down Expand Up @@ -98,6 +104,8 @@ jobs:
SKIP_MIGRATION: 1
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: ./.github/actions/install-deps
with:
node-version: ${{ env.NODE_VERSION }}
Expand Down Expand Up @@ -135,6 +143,8 @@ jobs:
ADAPTERS: ${{ matrix.adapter }}
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: ./.github/actions/install-deps
with:
node-version: ${{ matrix.node }}
Expand Down Expand Up @@ -172,6 +182,8 @@ jobs:
ADAPTERS: ${{ matrix.adapter }}
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: ./.github/actions/install-deps
with:
node-version: ${{ env.NODE_VERSION }}
Expand Down Expand Up @@ -209,6 +221,8 @@ jobs:
SERVER: pouchdb-server
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: ./.github/actions/install-deps
with:
node-version: ${{ env.NODE_VERSION }}
Expand Down Expand Up @@ -245,6 +259,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: ./.github/actions/install-deps
with:
node-version: ${{ matrix.node }}
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false
- uses: ./.github/actions/install-deps
- uses: ruby/setup-ruby@v1
with:
Expand Down

0 comments on commit 0e664a6

Please sign in to comment.