Skip to content

Commit 59c2699

Browse files
chore(deps): bump the github-action-dependencies group across 1 directory with 3 updates
Bumps the github-action-dependencies group with 3 updates in the / directory: [ruby/setup-ruby](https://github.com/ruby/setup-ruby), [peter-evans/create-or-update-comment](https://github.com/peter-evans/create-or-update-comment) and [slackapi/slack-github-action](https://github.com/slackapi/slack-github-action). Updates `ruby/setup-ruby` from 1.229.0 to 1.233.0 - [Release notes](https://github.com/ruby/setup-ruby/releases) - [Changelog](https://github.com/ruby/setup-ruby/blob/master/release.rb) - [Commits](ruby/setup-ruby@354a1ad...ca041f9) Updates `peter-evans/create-or-update-comment` from 3.1.0 to 4.0.0 - [Release notes](https://github.com/peter-evans/create-or-update-comment/releases) - [Commits](peter-evans/create-or-update-comment@v3.1.0...71345be) Updates `slackapi/slack-github-action` from 1.26.0 to 2.0.0 - [Release notes](https://github.com/slackapi/slack-github-action/releases) - [Commits](slackapi/slack-github-action@70cd7be...485a9d4) --- updated-dependencies: - dependency-name: ruby/setup-ruby dependency-version: 1.233.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-action-dependencies - dependency-name: peter-evans/create-or-update-comment dependency-version: 4.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-action-dependencies - dependency-name: slackapi/slack-github-action dependency-version: 2.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-action-dependencies ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent a16642e commit 59c2699

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/build-sample-app.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
brew install xcbeautify # used by fastlane for output
9696
9797
- name: Install Ruby
98-
uses: ruby/setup-ruby@354a1ad156761f5ee2b7b13fa8e09943a5e8d252 # v1.229.0
98+
uses: ruby/setup-ruby@ca041f971d66735f3e5ff1e21cc13e2d51e7e535 # v1.233.0
9999
with:
100100
ruby-version: ${{ env.RUBY_VERSION }}
101101
bundler-cache: true # cache tools to make builds faster in future

.github/workflows/build-test-sample-apps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
steps:
7878
- name: Update sample builds PR comment with build information
7979
if: ${{ github.event_name == 'pull_request' }}
80-
uses: peter-evans/create-or-update-comment@23ff15729ef2fc348714a3bb66d2f655ca9066f2 # v3.1.0
80+
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0
8181
with:
8282
comment-id: ${{ needs.update-pr-comment.outputs.comment-id }}
8383
issue-number: ${{ github.event.pull_request.number }}
@@ -87,7 +87,7 @@ jobs:
8787

8888
- name: Update sample builds PR comment with build failure message
8989
if: ${{ github.event_name == 'pull_request' && failure() }}
90-
uses: peter-evans/create-or-update-comment@23ff15729ef2fc348714a3bb66d2f655ca9066f2 # v3.1.0
90+
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0
9191
with:
9292
comment-id: ${{ needs.update-pr-comment.outputs.comment-id }}
9393
issue-number: ${{ github.event.pull_request.number }}

.github/workflows/deploy-npm.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
IS_PRERELEASE: false # at this time, all deployments are made to `main` production branch
4242

4343
- name: Notify team of successful deployment
44-
uses: slackapi/slack-github-action@70cd7be8e40a46e8b0eced40b0de447bdb42f68e # v1.26.0
44+
uses: slackapi/slack-github-action@485a9d42d3a73031f12ec201c457e2162c45d02d # v2.0.0
4545
if: ${{ success() }}
4646
with:
4747
# Use block kit to format the Slack message: https://app.slack.com/block-kit-builder
@@ -76,7 +76,7 @@ jobs:
7676
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
7777

7878
- name: Notify team of failure
79-
uses: slackapi/slack-github-action@70cd7be8e40a46e8b0eced40b0de447bdb42f68e # v1.26.0
79+
uses: slackapi/slack-github-action@485a9d42d3a73031f12ec201c457e2162c45d02d # v2.0.0
8080
if: ${{ failure() }} # only run this if any previous step failed
8181
with:
8282
# Use block kit to format the Slack message: https://app.slack.com/block-kit-builder

.github/workflows/deploy-sdk.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4242

4343
- name: Notify team of git tag being created
44-
uses: slackapi/slack-github-action@70cd7be8e40a46e8b0eced40b0de447bdb42f68e # v1.26.0
44+
uses: slackapi/slack-github-action@485a9d42d3a73031f12ec201c457e2162c45d02d # v2.0.0
4545
if: steps.semantic-release.outputs.new_release_published == 'true'
4646
with:
4747
# Use block kit to format the Slack message: https://app.slack.com/block-kit-builder
@@ -76,7 +76,7 @@ jobs:
7676
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
7777

7878
- name: Notify team of failure
79-
uses: slackapi/slack-github-action@70cd7be8e40a46e8b0eced40b0de447bdb42f68e # v1.26.0
79+
uses: slackapi/slack-github-action@485a9d42d3a73031f12ec201c457e2162c45d02d # v2.0.0
8080
if: ${{ failure() }} # only run this if any previous step failed
8181
with:
8282
# Use block kit to format the Slack message: https://app.slack.com/block-kit-builder
@@ -134,7 +134,7 @@ jobs:
134134
IS_PRERELEASE: false # at this time, all deployments are made to `main` production branch
135135

136136
- name: Notify team of successful deployment
137-
uses: slackapi/slack-github-action@70cd7be8e40a46e8b0eced40b0de447bdb42f68e # v1.26.0
137+
uses: slackapi/slack-github-action@485a9d42d3a73031f12ec201c457e2162c45d02d # v2.0.0
138138
if: ${{ success() }}
139139
with:
140140
# Use block kit to format the Slack message: https://app.slack.com/block-kit-builder
@@ -169,7 +169,7 @@ jobs:
169169
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
170170

171171
- name: Notify team of failure
172-
uses: slackapi/slack-github-action@70cd7be8e40a46e8b0eced40b0de447bdb42f68e # v1.26.0
172+
uses: slackapi/slack-github-action@485a9d42d3a73031f12ec201c457e2162c45d02d # v2.0.0
173173
if: ${{ failure() }} # only run this if any previous step failed
174174
with:
175175
# Use block kit to format the Slack message: https://app.slack.com/block-kit-builder

0 commit comments

Comments
 (0)