Skip to content

Commit 7ad73b7

Browse files
authored
fix: Bump ruby and ld-eventsource versions (#328)
1 parent 3870181 commit 7ad73b7

File tree

9 files changed

+232
-232
lines changed

9 files changed

+232
-232
lines changed

.github/workflows/build-gem.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ on:
44
workflow_call:
55
inputs:
66
version:
7-
description: 'The version of ruby to build against'
7+
description: "The version of ruby to build against"
88
type: string
9-
default: '3.0'
9+
default: "3.2"
1010
upload-artifact:
11-
description: 'Whether to upload the gem as an artifact'
11+
description: "Whether to upload the gem as an artifact"
1212
type: boolean
1313
required: false
1414
default: true

.github/workflows/ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
name: Run CI
22
on:
33
push:
4-
branches: [ main, 'feat/**' ]
4+
branches: [main, "feat/**"]
55
paths-ignore:
6-
- '**.md' # Do not need to run CI for markdown changes.
6+
- "**.md" # Do not need to run CI for markdown changes.
77
pull_request:
8-
branches: [ main, 'feat/**' ]
8+
branches: [main, "feat/**"]
99
paths-ignore:
10-
- '**.md'
10+
- "**.md"
1111

1212
jobs:
1313
build-linux-oldest:
1414
uses: ./.github/workflows/build-gem.yml
1515
with:
16-
version: '3.0'
16+
version: "3.2"
1717

1818
build-linux-latest:
1919
uses: ./.github/workflows/build-gem.yml
2020
with:
21-
version: '3.2'
21+
version: "3.2"
2222

2323
build-linux-jruby:
2424
uses: ./.github/workflows/build-gem.yml
2525
with:
26-
version: 'jruby-9.4'
26+
version: "jruby-9.4"
2727

2828
build-docs:
2929
runs-on: ubuntu-latest
@@ -33,7 +33,7 @@ jobs:
3333

3434
- uses: ./.github/actions/setup
3535
with:
36-
version: '3.0'
36+
version: "3.2"
3737

3838
- uses: ./.github/actions/build-docs
3939

@@ -52,7 +52,7 @@ jobs:
5252

5353
- uses: ./.github/actions/setup
5454
with:
55-
version: '3.0'
55+
version: "3.2"
5656

5757
- name: Run tests
5858
run: bundle exec rspec spec

.github/workflows/manual-publish-docs.yml

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

1515
- uses: ./.github/actions/setup
1616
with:
17-
version: '3.0'
17+
version: "3.2"
1818
install-dependencies: false
1919

2020
- uses: ./.github/actions/build-docs

.github/workflows/manual-publish.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,24 @@ on:
33
workflow_dispatch:
44
inputs:
55
dry_run:
6-
description: 'Is this a dry run. If so no package will be published.'
6+
description: "Is this a dry run. If so no package will be published."
77
type: boolean
88
required: true
99

1010
jobs:
1111
build-ruby-gem:
1212
uses: ./.github/workflows/build-gem.yml
1313
with:
14-
version: '3.0'
14+
version: "3.2"
1515

1616
build-jruby-gem:
1717
uses: ./.github/workflows/build-gem.yml
1818
with:
19-
version: 'jruby-9.4'
19+
version: "jruby-9.4"
2020

2121
publish:
2222
runs-on: ubuntu-latest
23-
needs: [ 'build-ruby-gem', 'build-jruby-gem' ]
23+
needs: ["build-ruby-gem", "build-jruby-gem"]
2424

2525
outputs:
2626
gem-hash: ${{ steps.publish.outputs.gem-hash }}
@@ -34,15 +34,15 @@ jobs:
3434

3535
- uses: ./.github/actions/setup
3636
with:
37-
version: '3.0'
37+
version: "3.2"
3838
install-dependencies: false
3939

4040
- uses: launchdarkly/gh-actions/actions/[email protected]
41-
name: 'Get rubygems API key'
41+
name: "Get rubygems API key"
4242
if: ${{ !inputs.dry_run }}
4343
with:
4444
aws_assume_role: ${{ vars.AWS_ROLE_ARN }}
45-
ssm_parameter_pairs: '/production/common/releasing/rubygems/api_key = GEM_HOST_API_KEY'
45+
ssm_parameter_pairs: "/production/common/releasing/rubygems/api_key = GEM_HOST_API_KEY"
4646

4747
- uses: ./.github/actions/build-docs
4848

@@ -57,7 +57,7 @@ jobs:
5757
token: ${{secrets.GITHUB_TOKEN}}
5858

5959
release-provenance:
60-
needs: [ 'publish' ]
60+
needs: ["publish"]
6161

6262
permissions:
6363
actions: read

.github/workflows/release-please.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,22 +22,22 @@ jobs:
2222
id: release
2323

2424
build-ruby-gem:
25-
needs: [ 'release-package' ]
25+
needs: ["release-package"]
2626
if: ${{ needs.release-package.outputs.release-created == 'true' }}
2727
uses: ./.github/workflows/build-gem.yml
2828
with:
29-
version: '3.0'
29+
version: "3.2"
3030

3131
build-jruby-gem:
32-
needs: [ 'release-package' ]
32+
needs: ["release-package"]
3333
if: ${{ needs.release-package.outputs.release-created == 'true' }}
3434
uses: ./.github/workflows/build-gem.yml
3535
with:
36-
version: 'jruby-9.4'
36+
version: "jruby-9.4"
3737

3838
publish:
3939
runs-on: ubuntu-latest
40-
needs: [ 'release-package', 'build-ruby-gem', 'build-jruby-gem' ]
40+
needs: ["release-package", "build-ruby-gem", "build-jruby-gem"]
4141
if: ${{ needs.release-package.outputs.release-created == 'true' }}
4242

4343
outputs:
@@ -52,14 +52,14 @@ jobs:
5252

5353
- uses: ./.github/actions/setup
5454
with:
55-
version: '3.0'
55+
version: "3.2"
5656
install-dependencies: false
5757

5858
- uses: launchdarkly/gh-actions/actions/[email protected]
59-
name: 'Get rubygems API key'
59+
name: "Get rubygems API key"
6060
with:
6161
aws_assume_role: ${{ vars.AWS_ROLE_ARN }}
62-
ssm_parameter_pairs: '/production/common/releasing/rubygems/api_key = GEM_HOST_API_KEY'
62+
ssm_parameter_pairs: "/production/common/releasing/rubygems/api_key = GEM_HOST_API_KEY"
6363

6464
- uses: ./.github/actions/build-docs
6565

@@ -73,7 +73,7 @@ jobs:
7373
token: ${{ secrets.GITHUB_TOKEN }}
7474

7575
release-provenance:
76-
needs: [ 'release-package', 'publish' ]
76+
needs: ["release-package", "publish"]
7777
if: ${{ needs.release-package.outputs.release-created == 'true' }}
7878

7979
permissions:

0 commit comments

Comments
 (0)