Skip to content

Commit 5772c09

Browse files
author
Nate Smith
authored
Merge pull request cli#5271 from cli/dependabot/github_actions/actions/checkout-3
Bump actions/checkout from 2 to 3
2 parents 97ea5e7 + 0cce0e1 commit 5772c09

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
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: Check out code
19-
uses: actions/checkout@v2
19+
uses: actions/checkout@v3
2020

2121
- name: Initialize CodeQL
2222
uses: github/codeql-action/init@v1

.github/workflows/go.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
go-version: 1.16
1616

1717
- name: Check out code
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@v3
1919

2020
- name: Cache Go modules
2121
uses: actions/cache@v2

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
go-version: 1.16
2323

2424
- name: Check out code
25-
uses: actions/checkout@v2
25+
uses: actions/checkout@v3
2626

2727
- name: Verify dependencies
2828
run: |

.github/workflows/releases.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v3
1414
- name: Set up Go 1.16
1515
uses: actions/setup-go@v2
1616
with:
@@ -44,7 +44,7 @@ jobs:
4444
GORELEASER_CURRENT_TAG: ${{steps.changelog.outputs.tag-name}}
4545
CERT_PASSWORD: ${{secrets.WINDOWS_CERT_PASSWORD}}
4646
- name: Checkout documentation site
47-
uses: actions/checkout@v2
47+
uses: actions/checkout@v3
4848
with:
4949
repository: github/cli.github.com
5050
path: site
@@ -128,7 +128,7 @@ jobs:
128128
runs-on: windows-latest
129129
steps:
130130
- name: Checkout
131-
uses: actions/checkout@v2
131+
uses: actions/checkout@v3
132132
- name: Download gh.exe
133133
id: download_exe
134134
shell: bash
@@ -188,7 +188,7 @@ jobs:
188188
env:
189189
COMMITTER_TOKEN: ${{ secrets.UPLOAD_GITHUB_TOKEN }}
190190
- name: Checkout scoop bucket
191-
uses: actions/checkout@v2
191+
uses: actions/checkout@v3
192192
with:
193193
repository: cli/scoop-gh
194194
path: scoop-gh

0 commit comments

Comments
 (0)