Skip to content

Commit ed0a74a

Browse files
chore(deps): bump the github-action-dependencies group across 1 directory with 7 updates
Bumps the github-action-dependencies group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `5` | | [actions/setup-node](https://github.com/actions/setup-node) | `4` | `5` | | [cycjimmy/semantic-release-action](https://github.com/cycjimmy/semantic-release-action) | `4.2.0` | `5.0.0` | | [slackapi/slack-github-action](https://github.com/slackapi/slack-github-action) | `1.26.0` | `2.1.1` | | [actions/setup-java](https://github.com/actions/setup-java) | `4` | `5` | | [ruby/setup-ruby](https://github.com/ruby/setup-ruby) | `1.229.0` | `1.257.0` | | [kenji-miyake/setup-sd](https://github.com/kenji-miyake/setup-sd) | `08c14e27d65a1c215342ef00c81583ae67f4c5ef` | `f4181660873fa5814708e1c0a640d8e9975a4ae5` | Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `actions/setup-node` from 4 to 5 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v4...v5) Updates `cycjimmy/semantic-release-action` from 4.2.0 to 5.0.0 - [Release notes](https://github.com/cycjimmy/semantic-release-action/releases) - [Changelog](https://github.com/cycjimmy/semantic-release-action/blob/main/docs/CHANGELOG.md) - [Commits](cycjimmy/semantic-release-action@0a51e81...9cc899c) Updates `slackapi/slack-github-action` from 1.26.0 to 2.1.1 - [Release notes](https://github.com/slackapi/slack-github-action/releases) - [Commits](slackapi/slack-github-action@70cd7be...91efab1) Updates `actions/setup-java` from 4 to 5 - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](actions/setup-java@v4...v5) Updates `ruby/setup-ruby` from 1.229.0 to 1.257.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...4451173) Updates `kenji-miyake/setup-sd` from 08c14e27d65a1c215342ef00c81583ae67f4c5ef to f4181660873fa5814708e1c0a640d8e9975a4ae5 - [Release notes](https://github.com/kenji-miyake/setup-sd/releases) - [Commits](kenji-miyake/setup-sd@08c14e2...f418166) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-action-dependencies - dependency-name: actions/setup-node dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-action-dependencies - dependency-name: cycjimmy/semantic-release-action dependency-version: 5.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.1.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-action-dependencies - dependency-name: actions/setup-java dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-action-dependencies - dependency-name: ruby/setup-ruby dependency-version: 1.257.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-action-dependencies - dependency-name: kenji-miyake/setup-sd dependency-version: f4181660873fa5814708e1c0a640d8e9975a4ae5 dependency-type: direct:production dependency-group: github-action-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 65362f3 commit ed0a74a

7 files changed

Lines changed: 33 additions & 33 deletions

File tree

.github/workflows/check-api-changes.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Checkout Repository
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2222

2323
- name: Setup Node.js
24-
uses: actions/setup-node@v4
24+
uses: actions/setup-node@v5
2525
with:
2626
node-version: ${{ env.NODE_VERSION }}
2727

.github/workflows/deploy-sdk.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ jobs:
2828
app_id: ${{ secrets.CIO_APP_ID }}
2929
private_key: ${{ secrets.CIO_APP_SECRET }}
3030

31-
- uses: actions/checkout@v4
31+
- uses: actions/checkout@v5
3232

3333
- name: Deploy git tag via semantic release
34-
uses: cycjimmy/semantic-release-action@0a51e81a6baff2acad3ee88f4121c589c73d0f0e # v4.2.0
34+
uses: cycjimmy/semantic-release-action@9cc899c47e6841430bbaedb43de1560a568dfd16 # v5.0.0
3535
id: semantic-release
3636
with:
3737
semantic_version: latest
@@ -46,7 +46,7 @@ jobs:
4646
GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }}
4747

4848
- name: Notify team of git tag being created
49-
uses: slackapi/slack-github-action@70cd7be8e40a46e8b0eced40b0de447bdb42f68e # v1.26.0
49+
uses: slackapi/slack-github-action@91efab103c0de0a537f72a35f6b8cda0ee76bf0a # v2.1.1
5050
if: steps.semantic-release.outputs.new_release_published == 'true' # only run if a git tag was made.
5151
with:
5252
# Use block kit to format the Slack message: https://app.slack.com/block-kit-builder
@@ -89,7 +89,7 @@ jobs:
8989
# environment: production
9090

9191
- name: Notify team of failure
92-
uses: slackapi/slack-github-action@70cd7be8e40a46e8b0eced40b0de447bdb42f68e # v1.26.0
92+
uses: slackapi/slack-github-action@91efab103c0de0a537f72a35f6b8cda0ee76bf0a # v2.1.1
9393
if: ${{ failure() }} # only run this if any previous step failed
9494
with:
9595
# Use block kit to format the Slack message: https://app.slack.com/block-kit-builder
@@ -129,10 +129,10 @@ jobs:
129129
if: needs.deploy-git-tag.outputs.new_release_published == 'true' # only run if a git tag was made.
130130
runs-on: ubuntu-latest
131131
steps:
132-
- uses: actions/checkout@v4
132+
- uses: actions/checkout@v5
133133
with:
134134
ref: ${{ needs.deploy-git-tag.outputs.new_release_git_head }}
135-
- uses: actions/setup-node@v4
135+
- uses: actions/setup-node@v5
136136
with:
137137
node-version: '20'
138138
- run: npm ci
@@ -143,7 +143,7 @@ jobs:
143143
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
144144

145145
- name: Notify team of successful deployment
146-
uses: slackapi/slack-github-action@70cd7be8e40a46e8b0eced40b0de447bdb42f68e # v1.26.0
146+
uses: slackapi/slack-github-action@91efab103c0de0a537f72a35f6b8cda0ee76bf0a # v2.1.1
147147
if: ${{ success() }}
148148
with:
149149
# Use block kit to format the Slack message: https://app.slack.com/block-kit-builder
@@ -178,7 +178,7 @@ jobs:
178178
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
179179

180180
- name: Notify team of failure
181-
uses: slackapi/slack-github-action@70cd7be8e40a46e8b0eced40b0de447bdb42f68e # v1.26.0
181+
uses: slackapi/slack-github-action@91efab103c0de0a537f72a35f6b8cda0ee76bf0a # v2.1.1
182182
if: ${{ failure() }} # only run this if any previous step failed
183183
with:
184184
# Use block kit to format the Slack message: https://app.slack.com/block-kit-builder

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
name: Lint and TypeScript check
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
13-
- uses: actions/setup-node@v4
12+
- uses: actions/checkout@v5
13+
- uses: actions/setup-node@v5
1414
with:
1515
node-version: '20'
1616

.github/workflows/reusable_build_sample_apps.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ jobs:
1818
FIREBASE_APP_DISTRIBUTION_SERVICE_ACCOUNT_CREDS_B64: ${{ secrets.FIREBASE_APP_DISTRIBUTION_SERVICE_ACCOUNT_CREDS_B64 }}
1919
steps:
2020
- name: Check out code
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2222
with:
2323
fetch-depth: 0 # Workaround for bug https://github.com/actions/checkout/issues/1471
2424

25-
- uses: actions/setup-node@v4
25+
- uses: actions/setup-node@v5
2626
with:
2727
node-version: "20"
2828

29-
- uses: actions/setup-java@v4
29+
- uses: actions/setup-java@v5
3030
with:
3131
distribution: "temurin"
3232
java-version: "17"
@@ -70,13 +70,13 @@ jobs:
7070
echo "sdkVersion=${{ env.LATEST_TAG }}" >> "test-app/local.env"
7171
7272
- name: Install tools from Gemfile (ruby language) used for building our apps with
73-
uses: ruby/setup-ruby@354a1ad156761f5ee2b7b13fa8e09943a5e8d252 # v1.229.0
73+
uses: ruby/setup-ruby@0481980f17b760ef6bca5e8c55809102a0af1e5a # v1.263.0
7474
with:
7575
ruby-version: '3.0'
7676
bundler-cache: true
7777

7878
- name: Install sd CLI to use later in the workflow
79-
uses: kenji-miyake/setup-sd@08c14e27d65a1c215342ef00c81583ae67f4c5ef # v2.0.0
79+
uses: kenji-miyake/setup-sd@f4181660873fa5814708e1c0a640d8e9975a4ae5 # v2.0.0
8080

8181
- name: Bundle install
8282
working-directory: test-app
@@ -147,11 +147,11 @@ jobs:
147147
FIREBASE_APP_DISTRIBUTION_SERVICE_ACCOUNT_CREDS_B64: ${{ secrets.FIREBASE_APP_DISTRIBUTION_SERVICE_ACCOUNT_CREDS_B64 }}
148148
steps:
149149
- name: Check out code
150-
uses: actions/checkout@v4
150+
uses: actions/checkout@v5
151151
with:
152152
fetch-depth: 0 # Workaround for bug https://github.com/actions/checkout/issues/1471
153153

154-
- uses: actions/setup-node@v4
154+
- uses: actions/setup-node@v5
155155
with:
156156
node-version: "20"
157157

@@ -205,7 +205,7 @@ jobs:
205205
xcode-version: "16.2"
206206

207207
- name: Install tools from Gemfile (ruby language) used for building our apps with
208-
uses: ruby/setup-ruby@354a1ad156761f5ee2b7b13fa8e09943a5e8d252 # v1.229.0
208+
uses: ruby/setup-ruby@0481980f17b760ef6bca5e8c55809102a0af1e5a # v1.263.0
209209
with:
210210
ruby-version: '3.0'
211211
bundler-cache: true

.github/workflows/test.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
name: Test able to deploy to npm
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
14-
- uses: actions/setup-node@v4
13+
- uses: actions/checkout@v5
14+
- uses: actions/setup-node@v5
1515
with:
1616
node-version: '20'
1717

@@ -28,8 +28,8 @@ jobs:
2828
name: Test unit tests for plugin
2929
runs-on: ubuntu-latest
3030
steps:
31-
- uses: actions/checkout@v4
32-
- uses: actions/setup-node@v4
31+
- uses: actions/checkout@v5
32+
- uses: actions/setup-node@v5
3333
with:
3434
node-version: '20'
3535

@@ -46,8 +46,8 @@ jobs:
4646
matrix:
4747
push_provider: [fcm, apn]
4848
steps:
49-
- uses: actions/checkout@v4
50-
- uses: actions/setup-node@v4
49+
- uses: actions/checkout@v5
50+
- uses: actions/setup-node@v5
5151
with:
5252
node-version: '20'
5353

@@ -67,8 +67,8 @@ jobs:
6767
name: Test utility functions
6868
runs-on: ubuntu-latest
6969
steps:
70-
- uses: actions/checkout@v4
71-
- uses: actions/setup-node@v4
70+
- uses: actions/checkout@v5
71+
- uses: actions/setup-node@v5
7272
with:
7373
node-version: '20'
7474

.github/workflows/unpublish-npm-version.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@v4
17-
- uses: actions/setup-node@v4
16+
- uses: actions/checkout@v5
17+
- uses: actions/setup-node@v5
1818
with:
1919
node-version: "20"
2020

.github/workflows/validate-plugin-compatibility.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,15 @@ jobs:
5858

5959
steps:
6060
- name: Checkout Repository
61-
uses: actions/checkout@v4
61+
uses: actions/checkout@v5
6262

6363
- name: Setup Node.js
64-
uses: actions/setup-node@v4
64+
uses: actions/setup-node@v5
6565
with:
6666
node-version: ${{ env.NODE_VERSION }}
6767

6868
- name: Setup Java
69-
uses: actions/setup-java@v4
69+
uses: actions/setup-java@v5
7070
with:
7171
distribution: temurin
7272
java-version: ${{ env.JAVA_VERSION }}

0 commit comments

Comments
 (0)