Skip to content

Commit c7031d3

Browse files
chore(deps): bump the github-action-dependencies group with 4 updates
Bumps the github-action-dependencies group with 4 updates: [slackapi/slack-github-action](https://github.com/slackapi/slack-github-action), [gradle/actions](https://github.com/gradle/actions), [codecov/codecov-action](https://github.com/codecov/codecov-action) and [mikepenz/action-junit-report](https://github.com/mikepenz/action-junit-report). 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@v1.26.0...v2.0.0) Updates `gradle/actions` from 3 to 4 - [Release notes](https://github.com/gradle/actions/releases) - [Commits](gradle/actions@v3...v4) Updates `codecov/codecov-action` from 4 to 5 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@v4...v5) Updates `mikepenz/action-junit-report` from 4 to 5 - [Release notes](https://github.com/mikepenz/action-junit-report/releases) - [Commits](mikepenz/action-junit-report@v4...v5) --- updated-dependencies: - dependency-name: slackapi/slack-github-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-action-dependencies - dependency-name: gradle/actions dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-action-dependencies - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-action-dependencies - dependency-name: mikepenz/action-junit-report dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-action-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 629f20e commit c7031d3

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/deploy-sdk.yml

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

6464
- name: Notify team of git tag being created
65-
uses: slackapi/slack-github-action@v1.26.0
65+
uses: slackapi/slack-github-action@v2.0.0
6666
if: steps.semantic-release.outputs.new_release_published == 'true' # only run if a git tag was made.
6767
with:
6868
# Use block kit for format of the JSON payloads: https://app.slack.com/block-kit-builder
@@ -107,7 +107,7 @@ jobs:
107107
environment: production
108108

109109
- name: Notify team of failure
110-
uses: slackapi/slack-github-action@v1.26.0
110+
uses: slackapi/slack-github-action@v2.0.0
111111
if: ${{ failure() }} # only run this if any previous step failed
112112
with:
113113
# Use block kit for format of the JSON payloads: https://app.slack.com/block-kit-builder
@@ -165,7 +165,7 @@ jobs:
165165
SONATYPE_STAGING_PROFILE_ID: ${{ secrets.SONATYPE_STAGING_PROFILE_ID }}
166166

167167
- name: Notify team of successful deployment
168-
uses: slackapi/slack-github-action@v1.26.0
168+
uses: slackapi/slack-github-action@v2.0.0
169169
if: ${{ success() }}
170170
with:
171171
# Use block kit for format of the JSON payloads: https://app.slack.com/block-kit-builder
@@ -202,7 +202,7 @@ jobs:
202202
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
203203

204204
- name: Notify team of failure
205-
uses: slackapi/slack-github-action@v1.26.0
205+
uses: slackapi/slack-github-action@v2.0.0
206206
if: ${{ failure() }} # only run this if any previous step failed
207207
with:
208208
# Use block kit for format of the JSON payloads: https://app.slack.com/block-kit-builder

.github/workflows/manual-deployment.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
SONATYPE_STAGING_PROFILE_ID: ${{ secrets.SONATYPE_STAGING_PROFILE_ID }}
3737

3838
- name: Notify team of successful deployment
39-
uses: slackapi/slack-github-action@v1.26.0
39+
uses: slackapi/slack-github-action@v2.0.0
4040
if: ${{ success() }}
4141
with:
4242
payload: |
@@ -69,7 +69,7 @@ jobs:
6969
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_NOTIFY_RELEASES_WEBHOOK_URL }}
7070
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
7171
- name: Notify team of failure
72-
uses: slackapi/slack-github-action@v1.26.0
72+
uses: slackapi/slack-github-action@v2.0.0
7373
if: ${{ failure() }}
7474
with:
7575
payload: |

.github/workflows/snapshot-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,10 +146,10 @@ jobs:
146146
${{ runner.os }}-gradle-${{ matrix.gradle-version }}-
147147
148148
- name: Verify gradle scripts are valid gradle scripts
149-
uses: gradle/actions/wrapper-validation@v3
149+
uses: gradle/actions/wrapper-validation@v4
150150

151151
- name: Set up Gradle Version ${{ matrix.gradle-version }}
152-
uses: gradle/actions/setup-gradle@v3
152+
uses: gradle/actions/setup-gradle@v4
153153
with:
154154
gradle-version: ${{ matrix.gradle-version }}
155155

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ jobs:
1717
- name: Run unit tests (${{ matrix.module }})
1818
run: ./gradlew :${{ matrix.module }}:runJacocoTestReport
1919
- name: Upload code coverage report
20-
uses: codecov/codecov-action@v4
20+
uses: codecov/codecov-action@v5
2121
env:
2222
CODECOV_TOKEN: ${{ secrets.CODECOV_UPLOAD_TOKEN }}
2323
with:
2424
fail_ci_if_error: true
2525
verbose: true
2626
files: ./${{ matrix.module }}/build/reports/jacoco/test/jacocoTestReport.xml,./${{ matrix.module }}/build/reports/jacoco/runJacocoTestReport/runJacocoTestReport.xml
2727
- name: Publish test results (${{ matrix.module }})
28-
uses: mikepenz/action-junit-report@v4
28+
uses: mikepenz/action-junit-report@v5
2929
with:
3030
report_paths: '**/build/test-results/test*/TEST-*.xml'
3131
fail_on_failure: true
@@ -97,7 +97,7 @@ jobs:
9797
script: ./gradlew :samples:${{ matrix.sample }}:connectedDebugAndroidTest --no-daemon --stacktrace -PuseKsp=true
9898

9999
- name: Publish test results
100-
uses: mikepenz/action-junit-report@v4
100+
uses: mikepenz/action-junit-report@v5
101101
if: always()
102102
with:
103103
report_paths: 'samples/${{ matrix.sample }}/build/outputs/androidTest-results/connected/TEST-*.xml'

0 commit comments

Comments
 (0)