Skip to content

Commit af6bcd4

Browse files
authored
Merge pull request #931 from gitlabhq/dependabot/github_actions/actions/checkout-3
Bump actions/checkout from 2 to 3
2 parents 7d05b18 + de32d7e commit af6bcd4

File tree

7 files changed

+17
-17
lines changed

7 files changed

+17
-17
lines changed

.github/workflows/issue-opened.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2424
# Only add triage labels if they are NOT a collaborator.
2525
# This prevents the needs-triage label from being added.
26-
- uses: actions/checkout@v2
26+
- uses: actions/checkout@v3
2727
if: ${{ failure() }}
2828
- uses: github/[email protected]
2929
if: ${{ failure() }}

.github/workflows/pr-acceptance-ce.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
outputs:
2323
go-version: ${{ steps.go-version.outputs.go-version }}
2424
steps:
25-
- uses: actions/checkout@v2
25+
- uses: actions/checkout@v3
2626
# Read the .go-version file and output it for other jobs to use.
2727
- id: go-version
2828
run: echo "::set-output name=go-version::$(cat .go-version)"
@@ -35,7 +35,7 @@ jobs:
3535
- uses: actions/setup-go@v2
3636
with:
3737
go-version: ${{ needs.go-version.outputs.go-version }}
38-
- uses: actions/checkout@v2
38+
- uses: actions/checkout@v3
3939
# Cache the Go modules.
4040
- uses: actions/cache@v2
4141
with:

.github/workflows/pr-acceptance-ee.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
go-version: ${{ steps.go-version.outputs.go-version }}
3939
steps:
4040
# Check out the pull request code (as opposed to the target project).
41-
- uses: actions/checkout@v2
41+
- uses: actions/checkout@v3
4242
with:
4343
ref: ${{ github.event.pull_request.head.sha }}
4444
persist-credentials: false
@@ -72,7 +72,7 @@ jobs:
7272
go-version: ${{ needs.go-version.outputs.go-version }}
7373
# Check out the target project (as opposed to the pull request code).
7474
# Yes, this is intentional. We are using trusted code while working with the GitLab license.
75-
- uses: actions/checkout@v2
75+
- uses: actions/checkout@v3
7676
with:
7777
ref: ${{ github.event.repository.default_branch }}
7878
persist-credentials: false
@@ -84,7 +84,7 @@ jobs:
8484
# Check out the pull request code (as opposed to the target project).
8585
# This overwrites the entire directory and deleted the unencrypted GitLab license file. The
8686
# service has already started and continues using the license even though the file is deleted.
87-
- uses: actions/checkout@v2
87+
- uses: actions/checkout@v3
8888
with:
8989
ref: ${{ github.event.pull_request.head.sha }}
9090
persist-credentials: false

.github/workflows/pr-lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
outputs:
1515
go-version: ${{ steps.go-version.outputs.go-version }}
1616
steps:
17-
- uses: actions/checkout@v2
17+
- uses: actions/checkout@v3
1818
# Read the .go-version file and output it for other jobs to use.
1919
- id: go-version
2020
run: echo "::set-output name=go-version::$(cat .go-version)"
@@ -36,7 +36,7 @@ jobs:
3636
- uses: actions/setup-go@v2
3737
with:
3838
go-version: ${{ needs.go-version.outputs.go-version }}
39-
- uses: actions/checkout@v2
39+
- uses: actions/checkout@v3
4040
# Cache the Go modules and compiled tools for the specific lint target.
4141
- uses: actions/cache@v2
4242
with:
@@ -57,7 +57,7 @@ jobs:
5757
- uses: actions/setup-go@v2
5858
with:
5959
go-version: ${{ needs.go-version.outputs.go-version }}
60-
- uses: actions/checkout@v2
60+
- uses: actions/checkout@v3
6161
# Cache the Go modules.
6262
- uses: actions/cache@v2
6363
with:

.github/workflows/pr-target.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
labels:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v3
1717
- uses: actions/labeler@v3
1818
with:
1919
configuration-path: .github/labeler-pr-triage.yml

.github/workflows/push.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
outputs:
2727
go-version: ${{ steps.go-version.outputs.go-version }}
2828
steps:
29-
- uses: actions/checkout@v2
29+
- uses: actions/checkout@v3
3030
# Read the .go-version file and output it for other jobs to use.
3131
- id: go-version
3232
run: echo "::set-output name=go-version::$(cat .go-version)"
@@ -48,7 +48,7 @@ jobs:
4848
- uses: actions/setup-go@v2
4949
with:
5050
go-version: ${{ needs.go-version.outputs.go-version }}
51-
- uses: actions/checkout@v2
51+
- uses: actions/checkout@v3
5252
# Cache the Go modules and compiled tools for the specific lint target.
5353
- uses: actions/cache@v2
5454
with:
@@ -69,7 +69,7 @@ jobs:
6969
- uses: actions/setup-go@v2
7070
with:
7171
go-version: ${{ needs.go-version.outputs.go-version }}
72-
- uses: actions/checkout@v2
72+
- uses: actions/checkout@v3
7373
# Cache the Go modules.
7474
- uses: actions/cache@v2
7575
with:
@@ -98,7 +98,7 @@ jobs:
9898
- uses: actions/setup-go@v2
9999
with:
100100
go-version: ${{ needs.go-version.outputs.go-version }}
101-
- uses: actions/checkout@v2
101+
- uses: actions/checkout@v3
102102
# Cache the Go modules.
103103
- uses: actions/cache@v2
104104
with:
@@ -118,7 +118,7 @@ jobs:
118118
- uses: actions/setup-go@v2
119119
with:
120120
go-version: ${{ needs.go-version.outputs.go-version }}
121-
- uses: actions/checkout@v2
121+
- uses: actions/checkout@v3
122122
# Cache the Go modules.
123123
- uses: actions/cache@v2
124124
with:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
outputs:
2121
go-version: ${{ steps.go-version.outputs.go-version }}
2222
steps:
23-
- uses: actions/checkout@v2
23+
- uses: actions/checkout@v3
2424
# Read the .go-version file and output it for other jobs to use.
2525
- id: go-version
2626
run: echo "::set-output name=go-version::$(cat .go-version)"
@@ -30,7 +30,7 @@ jobs:
3030
steps:
3131
-
3232
name: Checkout
33-
uses: actions/checkout@v2.4.0
33+
uses: actions/checkout@v3
3434
-
3535
name: Unshallow
3636
run: git fetch --prune --unshallow

0 commit comments

Comments
 (0)