Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 240e257

Browse files
authoredMar 27, 2023
ci(deps): Bump actions/checkout from 3.4.0 to 3.5.0
Bumps [actions/checkout](https://github.com/actions/checkout) from 3.4.0 to 3.5.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3.4.0...v3.5.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent d0ea4b9 commit 240e257

9 files changed

+19
-19
lines changed
 

‎.github/workflows/approve-pr.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
skip-commit-verification: true
3737
- id: checkout
3838
name: Checkout ${{ github.head_ref }}
39-
uses: actions/checkout@v3.4.0
39+
uses: actions/checkout@v3.5.0
4040
with:
4141
persist-credentials: false
4242
ref: ${{ github.head_ref }}

‎.github/workflows/ci.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
uses: hmarr/debug-action@v2.1.0
5858
- id: checkout
5959
name: Checkout ${{ env.REF }}
60-
uses: actions/checkout@v3.4.0
60+
uses: actions/checkout@v3.5.0
6161
with:
6262
ref: ${{ env.REF }}
6363
- id: node
@@ -88,7 +88,7 @@ jobs:
8888
steps:
8989
- id: checkout
9090
name: Checkout ${{ env.REF }}
91-
uses: actions/checkout@v3.4.0
91+
uses: actions/checkout@v3.5.0
9292
with:
9393
fetch-depth: 0
9494
ref: ${{ env.REF }}
@@ -109,7 +109,7 @@ jobs:
109109
steps:
110110
- id: checkout
111111
name: Checkout ${{ env.REF }}
112-
uses: actions/checkout@v3.4.0
112+
uses: actions/checkout@v3.5.0
113113
with:
114114
ref: ${{ env.REF }}
115115
- id: node
@@ -134,7 +134,7 @@ jobs:
134134
steps:
135135
- id: checkout
136136
name: Checkout ${{ env.REF }}
137-
uses: actions/checkout@v3.4.0
137+
uses: actions/checkout@v3.5.0
138138
with:
139139
ref: ${{ env.REF }}
140140
- id: node
@@ -159,7 +159,7 @@ jobs:
159159
steps:
160160
- id: checkout
161161
name: Checkout ${{ env.REF }}
162-
uses: actions/checkout@v3.4.0
162+
uses: actions/checkout@v3.5.0
163163
with:
164164
ref: ${{ env.REF }}
165165
- id: node
@@ -193,7 +193,7 @@ jobs:
193193
steps:
194194
- id: checkout
195195
name: Checkout ${{ env.REF }}
196-
uses: actions/checkout@v3.4.0
196+
uses: actions/checkout@v3.5.0
197197
with:
198198
ref: ${{ env.REF }}
199199
- id: node
@@ -236,7 +236,7 @@ jobs:
236236
steps:
237237
- id: checkout
238238
name: Checkout ${{ env.REF }}
239-
uses: actions/checkout@v3.4.0
239+
uses: actions/checkout@v3.5.0
240240
with:
241241
ref: ${{ env.REF }}
242242
- id: node
@@ -281,7 +281,7 @@ jobs:
281281
steps:
282282
- id: checkout
283283
name: Checkout ${{ env.REF }}
284-
uses: actions/checkout@v3.4.0
284+
uses: actions/checkout@v3.5.0
285285
with:
286286
ref: ${{ env.REF }}
287287
- id: node

‎.github/workflows/dependabot-auto.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
skip-commit-verification: true
4040
- id: checkout
4141
name: Checkout ${{ github.head_ref }}
42-
uses: actions/checkout@v3.4.0
42+
uses: actions/checkout@v3.5.0
4343
with:
4444
persist-credentials: ${{ steps.metadata.outputs.package-ecosystem == 'npm_and_yarn' }}
4545
ref: ${{ github.head_ref }}

‎.github/workflows/integrity.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
steps:
4646
- id: checkout
4747
name: Checkout ${{ env.REF }}
48-
uses: actions/checkout@v3.4.0
48+
uses: actions/checkout@v3.5.0
4949
with:
5050
persist-credentials: false
5151
ref: ${{ env.REF }}

‎.github/workflows/label-linked-issues.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
steps:
3434
- id: checkout
3535
name: Checkout main
36-
uses: actions/checkout@v3.4.0
36+
uses: actions/checkout@v3.5.0
3737
with:
3838
persist-credentials: false
3939
ref: main

‎.github/workflows/labels.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
steps:
2929
- id: checkout
3030
name: Checkout ${{ github.ref_name }}
31-
uses: actions/checkout@v3.4.0
31+
uses: actions/checkout@v3.5.0
3232
with:
3333
ref: ${{ github.ref }}
3434
- id: sync

‎.github/workflows/publish.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
uses: hmarr/debug-action@v2.1.0
4242
- id: checkout
4343
name: Checkout ${{ env.TAG }}
44-
uses: actions/checkout@v3.4.0
44+
uses: actions/checkout@v3.5.0
4545
with:
4646
ref: ${{ format('refs/tags/{0}', env.TAG) }}
4747
- id: version
@@ -65,7 +65,7 @@ jobs:
6565
steps:
6666
- id: checkout
6767
name: Checkout ${{ env.TAG }}
68-
uses: actions/checkout@v3.4.0
68+
uses: actions/checkout@v3.5.0
6969
with:
7070
ref: ${{ format('refs/tags/{0}', env.TAG) }}
7171
- id: npmrc-cleanup
@@ -98,7 +98,7 @@ jobs:
9898
steps:
9999
- id: checkout
100100
name: Checkout ${{ env.TAG }}
101-
uses: actions/checkout@v3.4.0
101+
uses: actions/checkout@v3.5.0
102102
with:
103103
ref: ${{ format('refs/tags/{0}', env.TAG) }}
104104
- id: npmrc-cleanup

‎.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
uses: hmarr/debug-action@v2.1.0
4848
- id: checkout
4949
name: Checkout ${{ env.REF }}
50-
uses: actions/checkout@v3.4.0
50+
uses: actions/checkout@v3.5.0
5151
with:
5252
ref: ${{ env.REF }}
5353
- id: version
@@ -82,7 +82,7 @@ jobs:
8282
steps:
8383
- id: checkout
8484
name: Checkout ${{ github.event.inputs.sha || 'event.pull_request.merge_commit_sha' }}
85-
uses: actions/checkout@v3.4.0
85+
uses: actions/checkout@v3.5.0
8686
with:
8787
fetch-depth: 0
8888
ref: ${{ github.event.inputs.sha || github.event.pull_request.merge_commit_sha }}

‎.github/workflows/typescript-canary.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
uses: hmarr/debug-action@v2.1.0
4242
- id: checkout
4343
name: Checkout ${{ env.REF }}
44-
uses: actions/checkout@v3.4.0
44+
uses: actions/checkout@v3.5.0
4545
with:
4646
ref: ${{ env.REF }}
4747
- id: node

0 commit comments

Comments
 (0)
Please sign in to comment.