File tree Expand file tree Collapse file tree 7 files changed +16
-14
lines changed Expand file tree Collapse file tree 7 files changed +16
-14
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,9 @@ inputs:
10
10
ios-sim :
11
11
description : ' iOS Simulator to use for testing'
12
12
required : true
13
+ token :
14
+ description : ' Token to use for publishing.'
15
+ required : true
13
16
14
17
runs :
15
18
using : composite
Original file line number Diff line number Diff line change 8
8
runs :
9
9
using : composite
10
10
steps :
11
- - uses : launchdarkly/gh-actions/actions/publish-pages@publish-pages-v1.0.1
11
+ - uses : launchdarkly/gh-actions/actions/publish-pages@publish-pages-v1.0.2
12
12
name : ' Publish to GitHub pages'
13
13
with :
14
14
docs_path : docs
Original file line number Diff line number Diff line change 14
14
runs-on : ${{ matrix.os }}
15
15
16
16
strategy :
17
+ fail-fast : false
17
18
matrix :
18
19
include :
19
20
- xcode-version : 15.0.1
@@ -35,29 +36,25 @@ jobs:
35
36
with :
36
37
xcode-version : ${{ matrix.xcode-version }}
37
38
ios-sim : ${{ matrix.ios-sim }}
39
+ token : ${{ secrets.GITHUB_TOKEN }}
38
40
39
41
- uses : ./.github/actions/build-docs
40
42
41
43
linux-build :
42
44
runs-on : ubuntu-latest
43
45
44
46
strategy :
47
+ fail-fast : false
45
48
matrix :
46
49
swift-version :
47
- - 5.1
48
- - 5.2
49
- - 5.3
50
- - 5.4
51
- - 5.5
52
- - 5.6
53
50
- 5.7
54
51
- 5.8
55
52
- 5.9
56
53
57
54
container : swift:${{ matrix.swift-version }}
58
55
59
56
steps :
60
- - uses : actions/checkout@v3
57
+ - uses : actions/checkout@v4
61
58
with :
62
59
fetch-depth : 0 # If you only need the current version keep this.
63
60
68
65
name : Windows - Swift 5.9
69
66
runs-on : windows-latest
70
67
steps :
71
- - uses : actions/checkout@v3
68
+ - uses : actions/checkout@v4
72
69
- name : Install Swift
73
70
uses : compnerd/gha-setup-swift@cd348eb89f2f450b0664c07fb1cb66880addf17d
74
71
with :
Original file line number Diff line number Diff line change 18
18
with :
19
19
xcode-version : 14.3.1
20
20
ios-sim : ' platform=iOS Simulator,name=iPhone 16,OS=16.4'
21
+ token : ${{ secrets.GITHUB_TOKEN }}
21
22
22
23
- uses : ./.github/actions/build-docs
23
24
Original file line number Diff line number Diff line change 19
19
steps :
20
20
- uses : actions/checkout@v4
21
21
22
- - uses : launchdarkly/gh-actions/actions/release-secrets@release-secrets-v1.0 .0
22
+ - uses : launchdarkly/gh-actions/actions/release-secrets@release-secrets-v1.2 .0
23
23
name : ' Get Cocoapods token'
24
24
with :
25
25
aws_assume_role : ${{ vars.AWS_ROLE_ARN }}
29
29
with :
30
30
xcode-version : 14.3.1
31
31
ios-sim : ' platform=iOS Simulator,name=iPhone 16,OS=16.4'
32
+ token : ${{ secrets.GITHUB_TOKEN }}
32
33
33
34
- uses : ./.github/actions/publish
34
35
with :
Original file line number Diff line number Diff line change 15
15
pull-requests : write
16
16
17
17
steps :
18
- - uses : google-github-actions /release-please-action@v4
18
+ - uses : googleapis /release-please-action@v4
19
19
id : release
20
20
with :
21
- token : ${{ secrets.GITHUB_TOKEN }}
22
21
target-branch : ${{ github.ref_name }}
23
22
24
23
- uses : actions/checkout@v4
36
35
#
37
36
# These remaining steps are ONLY run if a release was actually created
38
37
#
39
- - uses : launchdarkly/gh-actions/actions/release-secrets@release-secrets-v1.0 .0
38
+ - uses : launchdarkly/gh-actions/actions/release-secrets@release-secrets-v1.2 .0
40
39
if : ${{ steps.release.outputs.releases_created == 'true' }}
41
40
name : ' Get Cocoapods token'
42
41
with :
48
47
with :
49
48
xcode-version : 14.3.1
50
49
ios-sim : ' platform=iOS Simulator,name=iPhone 16,OS=16.4'
50
+ token : ${{ secrets.GITHUB_TOKEN }}
51
51
52
52
- uses : ./.github/actions/build-docs
53
53
if : ${{ steps.release.outputs.releases_created == 'true' }}
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ start-contract-test-service-bg:
21
21
22
22
run-contract-tests :
23
23
curl -s https://raw.githubusercontent.com/launchdarkly/sse-contract-tests/main/downloader/run.sh \
24
- | VERSION=v2 PARAMS=" -url http://localhost:8000 -debug -stop-service-at-end -skip 'basic parsing/large message in one chunk' -skip 'basic parsing/large message in two chunks'" sh
24
+ | VERSION=v1 PARAMS=" -url http://localhost:8000 -debug -stop-service-at-end -skip 'basic parsing/large message in one chunk' -skip 'basic parsing/large message in two chunks'" sh
25
25
26
26
contract-tests : build-contract-tests start-contract-test-service-bg run-contract-tests
27
27
You can’t perform that action at this time.
0 commit comments