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/approve-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
skip-commit-verification: true
- id: checkout
name: Checkout ${{ github.head_ref }}
uses: actions/checkout@v3.2.0
uses: actions/checkout@v3.3.0
with:
persist-credentials: false
ref: ${{ github.head_ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
steps:
- id: checkout
name: Checkout ${{ env.REF }}
uses: actions/checkout@v3.2.0
uses: actions/checkout@v3.3.0
with:
ref: ${{ env.REF }}
- id: node
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-auto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
skip-commit-verification: true
- id: checkout
name: Checkout ${{ github.head_ref }}
uses: actions/checkout@v3.2.0
uses: actions/checkout@v3.3.0
with:
persist-credentials: ${{ steps.metadata.outputs.package-ecosystem == 'npm_and_yarn' }}
ref: ${{ github.head_ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integrity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
steps:
- id: checkout
name: Checkout ${{ env.REF }}
uses: actions/checkout@v3.2.0
uses: actions/checkout@v3.3.0
with:
persist-credentials: false
ref: ${{ env.REF }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label-linked-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
steps:
- id: checkout
name: Checkout main
uses: actions/checkout@v3.2.0
uses: actions/checkout@v3.3.0
with:
persist-credentials: false
ref: main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
steps:
- id: checkout
name: Checkout ${{ github.ref_name }}
uses: actions/checkout@v3.2.0
uses: actions/checkout@v3.3.0
with:
ref: ${{ github.ref }}
- id: sync
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
uses: hmarr/debug-action@v2.1.0
- id: checkout
name: Checkout ${{ env.TAG }}
uses: actions/checkout@v3.2.0
uses: actions/checkout@v3.3.0
with:
ref: ${{ format('refs/tags/{0}', env.TAG) }}
- id: version
Expand All @@ -66,7 +66,7 @@ jobs:
steps:
- id: checkout
name: Checkout ${{ env.TAG }}
uses: actions/checkout@v3.2.0
uses: actions/checkout@v3.3.0
with:
ref: ${{ format('refs/tags/{0}', env.TAG) }}
- id: npmrc-cleanup
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
steps:
- id: checkout
name: Checkout ${{ env.TAG }}
uses: actions/checkout@v3.2.0
uses: actions/checkout@v3.3.0
with:
ref: ${{ format('refs/tags/{0}', env.TAG) }}
- id: npmrc-cleanup
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
uses: hmarr/debug-action@v2.1.0
- id: checkout
name: Checkout ${{ env.REF }}
uses: actions/checkout@v3.2.0
uses: actions/checkout@v3.3.0
with:
ref: ${{ env.REF }}
- id: version
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
steps:
- id: checkout
name: Checkout ${{ github.event.inputs.sha || 'event.pull_request.merge_commit_sha' }}
uses: actions/checkout@v3.2.0
uses: actions/checkout@v3.3.0
with:
fetch-depth: 0
ref: ${{ github.event.inputs.sha || github.event.pull_request.merge_commit_sha }}
Expand Down