Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci-gha-workflows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
permissions:
security-events: write
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
persist-credentials: false

Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/ci-nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
echo 'TEST_PREVIOUSLY_PASSED=false' >> $GITHUB_ENV
fi

- uses: actions/checkout@v5
- uses: actions/checkout@v6
if: ${{ env.TEST_PREVIOUSLY_PASSED != 'true' }}
with:
persist-credentials: false
Expand Down Expand Up @@ -175,7 +175,7 @@ jobs:
echo 'TEST_PREVIOUSLY_PASSED=false' >> $GITHUB_ENV
fi

- uses: actions/checkout@v5
- uses: actions/checkout@v6
if: ${{ env.TEST_PREVIOUSLY_PASSED != 'true' }}
with:
persist-credentials: false
Expand Down Expand Up @@ -278,7 +278,7 @@ jobs:
echo 'TEST_PREVIOUSLY_PASSED=false' >> $GITHUB_ENV
fi

- uses: actions/checkout@v5
- uses: actions/checkout@v6
if: ${{ env.TEST_PREVIOUSLY_PASSED != 'true' }}
with:
persist-credentials: false
Expand Down Expand Up @@ -435,7 +435,7 @@ jobs:
echo 'TEST_PREVIOUSLY_PASSED=false' >> $GITHUB_ENV
fi

- uses: actions/checkout@v5
- uses: actions/checkout@v6
if: ${{ env.TEST_PREVIOUSLY_PASSED != 'true' }}
with:
persist-credentials: false
Expand Down Expand Up @@ -495,7 +495,7 @@ jobs:
echo 'TEST_PREVIOUSLY_PASSED=false' >> $GITHUB_ENV
fi

- uses: actions/checkout@v5
- uses: actions/checkout@v6
if: ${{ env.TEST_PREVIOUSLY_PASSED != 'true' }}
with:
persist-credentials: false
Expand Down Expand Up @@ -625,7 +625,7 @@ jobs:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
persist-credentials: false
Expand Down Expand Up @@ -673,7 +673,7 @@ jobs:
echo 'LINT_PREVIOUSLY_PASSED=false' >> $GITHUB_ENV
fi

- uses: actions/checkout@v5
- uses: actions/checkout@v6
if: ${{ env.LINT_PREVIOUSLY_PASSED != 'true' }}
with:
persist-credentials: false
Expand Down Expand Up @@ -726,7 +726,7 @@ jobs:
echo 'TYPE_CHECK_PREVIOUSLY_PASSED=false' >> $GITHUB_ENV
fi

- uses: actions/checkout@v5
- uses: actions/checkout@v6
if: ${{ env.TYPE_CHECK_PREVIOUSLY_PASSED != 'true' }}
with:
persist-credentials: false
Expand Down Expand Up @@ -781,7 +781,7 @@ jobs:
echo 'VALIDATE_PREVIOUSLY_PASSED=false' >> $GITHUB_ENV
fi

- uses: actions/checkout@v5
- uses: actions/checkout@v6
if: ${{ env.VALIDATE_PREVIOUSLY_PASSED != 'true' }}
with:
persist-credentials: false
Expand Down Expand Up @@ -849,7 +849,7 @@ jobs:
timeout-minutes: 10
if: ${{ needs.environment.outputs.name == 'production' }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
persist-credentials: false

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
dependency-review:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
persist-credentials: false

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-demo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
persist-credentials: false
- uses: actions/setup-node@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
persist-credentials: true
- name: Setup Node.js
Expand Down
Loading