Skip to content

Commit 3db4115

Browse files
Bump actions/checkout from 3 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 9596fd5 commit 3db4115

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
steps:
2323
- name: Check out code
24-
uses: actions/checkout@v3
24+
uses: actions/checkout@v5
2525

2626
- name: Initialize CodeQL
2727
uses: github/codeql-action/init@v2

.github/workflows/go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
go-version: 1.19
2020

2121
- name: Check out code
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v5
2323

2424
- name: Restore Go modules cache
2525
uses: actions/cache@v3

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
go-version: 1.19
2626

2727
- name: Check out code
28-
uses: actions/checkout@v3
28+
uses: actions/checkout@v5
2929

3030
- name: Restore Go modules cache
3131
uses: actions/cache@v3

.github/workflows/releases.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-20.04
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v3
17+
uses: actions/checkout@v5
1818
with:
1919
fetch-depth: 0
2020
- name: Set up Go 1.19
@@ -50,7 +50,7 @@ jobs:
5050
GORELEASER_CURRENT_TAG: ${{steps.changelog.outputs.tag-name}}
5151
CERT_PASSWORD: ${{secrets.WINDOWS_CERT_PASSWORD}}
5252
- name: Checkout documentation site
53-
uses: actions/checkout@v3
53+
uses: actions/checkout@v5
5454
with:
5555
repository: github/cli.github.com
5656
path: site
@@ -137,7 +137,7 @@ jobs:
137137
runs-on: windows-latest
138138
steps:
139139
- name: Checkout
140-
uses: actions/checkout@v3
140+
uses: actions/checkout@v5
141141
- name: Download gh.exe
142142
id: download_exe
143143
shell: bash
@@ -197,7 +197,7 @@ jobs:
197197
env:
198198
COMMITTER_TOKEN: ${{ secrets.UPLOAD_GITHUB_TOKEN }}
199199
- name: Checkout scoop bucket
200-
uses: actions/checkout@v3
200+
uses: actions/checkout@v5
201201
with:
202202
repository: cli/scoop-gh
203203
path: scoop-gh

0 commit comments

Comments
 (0)