Skip to content

Commit a75ebcb

Browse files
Merge branch 'main' into token-permissions
2 parents 6a7346f + 3c31306 commit a75ebcb

File tree

78 files changed

+92
-85
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+92
-85
lines changed

.github/actions/test_gem/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ runs:
8484
# ...but not for appraisals, sadly.
8585
- name: Install Ruby ${{ inputs.ruby }} with dependencies
8686
if: "${{ steps.setup.outputs.appraisals == 'false' }}"
87-
uses: ruby/setup-ruby@v1.245.0
87+
uses: ruby/setup-ruby@v1.247.0
8888
with:
8989
ruby-version: "${{ inputs.ruby }}"
9090
working-directory: "${{ steps.setup.outputs.gem_dir }}"
@@ -95,7 +95,7 @@ runs:
9595
# If we're using appraisals, do it all manually.
9696
- name: Install Ruby ${{ inputs.ruby }} without dependencies
9797
if: "${{ steps.setup.outputs.appraisals == 'true' }}"
98-
uses: ruby/setup-ruby@v1.245.0
98+
uses: ruby/setup-ruby@v1.247.0
9999
with:
100100
ruby-version: "${{ inputs.ruby }}"
101101
bundler: "latest"

.github/workflows/conventional-commits.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
name: Conventional Commits Validation
2222
runs-on: ubuntu-latest
2323
steps:
24-
- uses: dev-build-deploy/[email protected].0
24+
- uses: dev-build-deploy/[email protected].3
2525
env:
2626
FORCE_COLOR: 3
2727
with:

.github/workflows/installation-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- uses: actions/checkout@v4
2929
# ATTENTION: Dependabot does not know how to update shared actions file.
3030
# If you see it update setup-ruby here also update it as part of actions/test_gem/action.yml
31-
- uses: ruby/setup-ruby@v1.245.0
31+
- uses: ruby/setup-ruby@v1.247.0
3232
with:
3333
ruby-version: ${{ matrix.ruby-version }}
3434
- name: "Install Latest Gem Versions on ${{ matrix.ruby-version }}"

.github/workflows/ossf-scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@ jobs:
4343
# Upload the results to GitHub's code scanning dashboard (optional).
4444
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
4545
- name: "Upload to code-scanning"
46-
uses: github/codeql-action/upload-sarif@ce28f5bb42b7a9f2c824e633a3f6ee835bab6858 # v3.29.0
46+
uses: github/codeql-action/upload-sarif@181d5eefc20863364f96762470ba6f862bdef56b # v3.29.2
4747
with:
4848
sarif_file: results.sarif

.github/workflows/release-hook-on-closed.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Install Ruby ${{ env.ruby_version }}
21-
uses: ruby/setup-ruby@v1.245.0
21+
uses: ruby/setup-ruby@v1.247.0
2222
with:
2323
ruby-version: ${{ env.ruby_version }}
2424
- name: Checkout repo

.github/workflows/release-hook-on-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Install Ruby ${{ env.ruby_version }}
22-
uses: ruby/setup-ruby@v1.245.0
22+
uses: ruby/setup-ruby@v1.247.0
2323
with:
2424
ruby-version: ${{ env.ruby_version }}
2525
- name: Checkout repo

.github/workflows/release-perform.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-latest
2929
steps:
3030
- name: Install Ruby ${{ env.ruby_version }}
31-
uses: ruby/setup-ruby@v1.245.0
31+
uses: ruby/setup-ruby@v1.247.0
3232
with:
3333
ruby-version: ${{ env.ruby_version }}
3434
- name: Checkout repo

.github/workflows/release-please.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,15 @@ jobs:
1919
name: Process Release
2020
runs-on: ubuntu-latest
2121
steps:
22+
- uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e # v2.0.6
23+
id: otelbot-token
24+
with:
25+
app-id: ${{ vars.OTELBOT_APP_ID }}
26+
private-key: ${{ secrets.OTELBOT_PRIVATE_KEY }}
2227
- uses: googleapis/[email protected]
2328
id: prepare
2429
# with:
25-
# token: ${{ secrets.OPENTELEMETRYBOT_GITHUB_TOKEN }}
30+
# token: ${{ steps.otelbot-token.outputs.token }}
2631

2732
outputs:
2833
paths_released: ${{ steps.prepare.outputs.paths_released }}
@@ -52,7 +57,7 @@ jobs:
5257
chmod 0600 $HOME/.gem/credentials
5358
printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
5459
55-
- uses: ruby/setup-ruby@v1.245.0
60+
- uses: ruby/setup-ruby@v1.247.0
5661
with:
5762
ruby-version: "3.1"
5863
bundler: latest

.github/workflows/release-request-weekly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Install Ruby ${{ env.ruby_version }}
21-
uses: ruby/setup-ruby@v1.245.0
21+
uses: ruby/setup-ruby@v1.247.0
2222
with:
2323
ruby-version: ${{ env.ruby_version }}
2424
- name: Checkout repo

.github/workflows/release-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- name: Install Ruby ${{ env.ruby_version }}
25-
uses: ruby/setup-ruby@v1.245.0
25+
uses: ruby/setup-ruby@v1.247.0
2626
with:
2727
ruby-version: ${{ env.ruby_version }}
2828
- name: Checkout repo

0 commit comments

Comments
 (0)