Skip to content

Commit d215054

Browse files
authored
Merge branch 'main' into main-restart-canary-steps
2 parents da9fa8a + c424a04 commit d215054

File tree

6 files changed

+5
-39
lines changed

6 files changed

+5
-39
lines changed

.github/dependabot.yml

-30
Original file line numberDiff line numberDiff line change
@@ -29,21 +29,6 @@ updates:
2929
dependencies:
3030
patterns:
3131
- '*'
32-
- package-ecosystem: gomod
33-
directory: '/'
34-
target-branch: 'v7'
35-
schedule:
36-
interval: weekly
37-
day: monday
38-
time: '01:00'
39-
timezone: US/Pacific
40-
open-pull-requests-limit: 2
41-
commit-message:
42-
prefix: '[v7](go)'
43-
groups:
44-
dependencies:
45-
patterns:
46-
- '*'
4732
- package-ecosystem: 'github-actions'
4833
directory: '/'
4934
schedule:
@@ -73,18 +58,3 @@ updates:
7358
dependencies:
7459
patterns:
7560
- '*'
76-
- package-ecosystem: 'github-actions'
77-
directory: '/'
78-
target-branch: 'v7'
79-
schedule:
80-
interval: weekly
81-
day: monday
82-
time: '01:00'
83-
timezone: US/Pacific
84-
open-pull-requests-limit: 2
85-
commit-message:
86-
prefix: '[v7](gha)'
87-
groups:
88-
dependencies:
89-
patterns:
90-
- '*'

.github/workflows/golangci-lint.yml

-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ on:
55
tags:
66
- "v9.*"
77
- "v8.*"
8-
- "v7.*"
98
pull_request:
109
types:
1110
- opened
@@ -15,7 +14,6 @@ on:
1514
- main
1615
- v9
1716
- v8
18-
- v7
1917
paths-ignore:
2018
- "doc/**"
2119
- ".gitpod.yml"

.github/workflows/tests-integration.yml

-2
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,10 @@ on:
5656
push:
5757
tags:
5858
- "v8.*"
59-
- "v7.*"
6059
pull_request_target:
6160
branches:
6261
- main
6362
- v8
64-
- v7
6563
paths-ignore:
6664
- "doc/**"
6765
- ".gitpod.yml"

.github/workflows/tests-unit.yml

-2
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,11 @@ on:
1313
tags:
1414
- "v9.*"
1515
- "v8.*"
16-
- "v7.*"
1716
pull_request:
1817
branches:
1918
- main
2019
- v9
2120
- v8
22-
- v7
2321
paths-ignore:
2422
- "doc/**"
2523
- ".gitpod.yml"

.github/workflows/util-code-quality.yml

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ on:
66
branches:
77
- main
88
- v8
9-
- v7
109
schedule:
1110
- cron: '45 5 * * *'
1211

integration/v7/isolated/auth_command_test.go

+5-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ var _ = Describe("auth command", func() {
2727

2828
Eventually(session).Should(Say("USAGE:"))
2929
Eventually(session).Should(Say("cf auth USERNAME PASSWORD\n"))
30-
Eventually(session).Should(Say("cf auth CLIENT_ID CLIENT_SECRET --client-credentials\n\n"))
30+
Eventually(session).Should(Say("cf auth CLIENT_ID CLIENT_SECRET --client-credentials\n"))
31+
Eventually(session).Should(Say("cf auth CLIENT_ID CLIENT_SECRET --assertion ID-TOKEN\n"))
32+
Eventually(session).Should(Say("cf auth CLIENT_ID --client-credentials --assertion ACCESS-TOKEN\n"))
3133

3234
Eventually(session).Should(Say("ENVIRONMENT VARIABLES:"))
3335
Eventually(session).Should(Say(`CF_USERNAME=user\s+Authenticating user. Overridden if USERNAME argument is provided.`))
@@ -44,7 +46,8 @@ var _ = Describe("auth command", func() {
4446

4547
Eventually(session).Should(Say("OPTIONS:"))
4648
Eventually(session).Should(Say("--client-credentials\\s+Use \\(non-user\\) service account \\(also called client credentials\\)\n"))
47-
Eventually(session).Should(Say("--origin\\s+Indicates the identity provider to be used for authentication\n\n"))
49+
Eventually(session).Should(Say("--origin\\s+Indicates the identity provider to be used for authentication\n"))
50+
Eventually(session).Should(Say("--assertion\\s+Token based authentication with assertion \\(user\\) or in combination with client-credentials \\(non-user\\)\n"))
4851

4952
Eventually(session).Should(Say("SEE ALSO:"))
5053
Eventually(session).Should(Say("api, login, target"))

0 commit comments

Comments
 (0)