Skip to content

Commit

Permalink
ci(deps): Bump actions/checkout from 3.6.0 to 4.0.0
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 3.6.0 to 4.0.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v3.6.0...v4.0.0)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] committed Sep 5, 2023
1 parent 7cf16eb commit 192a9b5
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 21 deletions.
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:
uses: hmarr/debug-action@v2.1.0
- id: checkout
name: Checkout ${{ github.head_ref }}
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.0.0
with:
persist-credentials: false
ref: ${{ github.head_ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
uses: hmarr/debug-action@v2.1.0
- id: checkout
name: Checkout ${{ github.head_ref }}
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.0.0
with:
persist-credentials: false
ref: ${{ github.head_ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cache-cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
uses: hmarr/debug-action@v2.1.0
- id: checkout
name: Checkout main
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.0.0
with:
persist-credentials: false
ref: main
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
uses: hmarr/debug-action@v2.1.0
- id: checkout
name: Checkout ${{ env.REF_NAME }}
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.0.0
with:
persist-credentials: false
ref: ${{ env.REF }}
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
steps:
- id: checkout
name: Checkout ${{ env.REF_NAME }}
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.0.0
with:
fetch-depth: 0
persist-credentials: false
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
steps:
- id: checkout
name: Checkout ${{ env.REF_NAME }}
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.0.0
with:
fetch-depth: 0
persist-credentials: false
Expand All @@ -148,7 +148,7 @@ jobs:
steps:
- id: checkout
name: Checkout ${{ env.REF_NAME }}
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.0.0
with:
persist-credentials: false
ref: ${{ env.REF }}
Expand Down Expand Up @@ -176,7 +176,7 @@ jobs:
steps:
- id: checkout
name: Checkout ${{ env.REF_NAME }}
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.0.0
with:
persist-credentials: false
ref: ${{ env.REF }}
Expand Down Expand Up @@ -204,7 +204,7 @@ jobs:
steps:
- id: checkout
name: Checkout ${{ env.REF_NAME }}
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.0.0
with:
persist-credentials: false
ref: ${{ env.REF }}
Expand Down Expand Up @@ -240,7 +240,7 @@ jobs:
steps:
- id: checkout
name: Checkout ${{ env.REF_NAME }}
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.0.0
with:
persist-credentials: false
ref: ${{ env.REF }}
Expand Down Expand Up @@ -292,7 +292,7 @@ jobs:
steps:
- id: checkout
name: Checkout ${{ env.REF_NAME }}
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.0.0
with:
persist-credentials: false
ref: ${{ env.REF }}
Expand Down Expand Up @@ -353,7 +353,7 @@ jobs:
steps:
- id: checkout
name: Checkout ${{ env.REF_NAME }}
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.0.0
with:
persist-credentials: false
ref: ${{ env.REF }}
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 @@ -42,7 +42,7 @@ jobs:
skip-commit-verification: true
- id: checkout
name: Checkout ${{ github.head_ref }}
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.0.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/infrastructure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
username: ${{ github.actor }}
- id: checkout
name: Checkout ${{ github.ref_name }}
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.0.0
with:
persist-credentials: false
ref: ${{ github.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 @@ -46,7 +46,7 @@ jobs:
steps:
- id: checkout
name: Checkout ${{ github.head_ref || github.ref_name }}
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.0.0
with:
persist-credentials: false
ref: ${{ github.head_ref || github.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 @@ -43,7 +43,7 @@ jobs:
uses: hmarr/debug-action@v2.1.0
- id: checkout
name: Checkout main
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.0.0
with:
persist-credentials: false
ref: main
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
uses: hmarr/debug-action@v2.1.0
- id: checkout
name: Checkout ${{ env.TAG }}
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.0.0
with:
persist-credentials: false
ref: ${{ env.REF }}
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
steps:
- id: checkout
name: Checkout ${{ env.TAG }}
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.0.0
with:
persist-credentials: false
ref: ${{ env.REF }}
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
steps:
- id: checkout
name: Checkout ${{ env.TAG }}
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.0.0
with:
persist-credentials: false
ref: ${{ env.REF }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
uses: hmarr/debug-action@v2.1.0
- id: checkout
name: Checkout ${{ env.REF_NAME }}
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.0.0
with:
ref: ${{ env.REF }}
- id: version
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
steps:
- id: checkout
name: Checkout ${{ env.REF_NAME }}
uses: actions/checkout@v3.6.0
uses: actions/checkout@v4.0.0
with:
fetch-depth: 0
persist-credentials: true
Expand Down

0 comments on commit 192a9b5

Please sign in to comment.