Skip to content

Commit 85f93f1

Browse files
chore(deps): bump the dependencies group across 1 directory with 4 updates
Bumps the dependencies group with 4 updates in the / directory: [Songmu/tagpr](https://github.com/songmu/tagpr), [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact) and [ruby/setup-ruby](https://github.com/ruby/setup-ruby). Updates `Songmu/tagpr` from 1.15.0 to 1.17.1 - [Release notes](https://github.com/songmu/tagpr/releases) - [Changelog](https://github.com/Songmu/tagpr/blob/main/CHANGELOG.md) - [Commits](Songmu/tagpr@78a926b...b3fb894) Updates `actions/upload-artifact` from 6.0.0 to 7.0.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@b7c566a...bbbca2d) Updates `actions/download-artifact` from 7.0.0 to 8.0.0 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@37930b1...70fc10c) Updates `ruby/setup-ruby` from 1.287.0 to 1.288.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@8d27f39...09a7688) --- updated-dependencies: - dependency-name: Songmu/tagpr dependency-version: 1.17.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: actions/upload-artifact dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/download-artifact dependency-version: 8.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: ruby/setup-ruby dependency-version: 1.288.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 25cf2f1 commit 85f93f1

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/create-tag-and-release-note.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ jobs:
1818
with:
1919
fetch-depth: 1
2020
- id: tagpr
21-
uses: Songmu/tagpr@78a926ba835e34721053309043aee696ba9c70b1 # v1.15.0
21+
uses: Songmu/tagpr@b3fb89424646b06c8aa460f50307c60b6a541425 # v1.17.1
2222
env:
2323
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/deploy-app.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ jobs:
160160
161161
# https://github.com/actions/upload-artifact
162162
- name: Upload ipa as artifact
163-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
163+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
164164
with:
165165
name: EQMonitor-ios.ipa
166166
path: app/EQMonitor.ipa
@@ -192,7 +192,7 @@ jobs:
192192

193193
# https://github.com/actions/download-artifact
194194
- name: Download ipa
195-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
195+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
196196
with:
197197
name: EQMonitor-ios.ipa
198198
path: build
@@ -309,7 +309,7 @@ jobs:
309309
ls -lh app/build/app/outputs/bundle/release/
310310
311311
- name: Upload aab as artifact
312-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
312+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
313313
with:
314314
name: EQMonitor-android.aab
315315
path: app/build/app/outputs/bundle/release/app-release.aab
@@ -352,7 +352,7 @@ jobs:
352352
done
353353
354354
- name: Download artifact aab
355-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
355+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
356356
with:
357357
name: EQMonitor-android.aab
358358
path: build

.github/workflows/tag-release.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343
- name: Set up ruby
4444
# https://github.com/ruby/setup-ruby
45-
uses: ruby/setup-ruby@8d27f39a5e7ad39aebbcbd1324f7af020229645c # v1.287.0
45+
uses: ruby/setup-ruby@09a7688d3b55cf0e976497ff046b70949eeaccfd # v1.288.0
4646
with:
4747
bundler-cache: true
4848
working-directory: app/android
@@ -67,7 +67,7 @@ jobs:
6767
run: bundle exec fastlane build
6868

6969
- name: Upload artifact aab
70-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
70+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
7171
with:
7272
path: app/build/app/outputs/bundle/release/app-release.aab
7373
name: release-aab
@@ -85,7 +85,7 @@ jobs:
8585
fetch-depth: 0
8686

8787
- name: Download artifact aab
88-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
88+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
8989
with:
9090
name: release-aab
9191
path: app/android/output
@@ -153,7 +153,7 @@ jobs:
153153

154154
- name: Set up ruby
155155
# https://github.com/ruby/setup-ruby
156-
uses: ruby/setup-ruby@8d27f39a5e7ad39aebbcbd1324f7af020229645c # v1.287.0
156+
uses: ruby/setup-ruby@09a7688d3b55cf0e976497ff046b70949eeaccfd # v1.288.0
157157
with:
158158
bundler-cache: true
159159
working-directory: app/ios
@@ -207,7 +207,7 @@ jobs:
207207
run: bundle exec fastlane build
208208

209209
- name: Upload artifact ipa
210-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
210+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
211211
with:
212212
path: app/ios/Runner.ipa
213213
name: release-ios
@@ -225,7 +225,7 @@ jobs:
225225
fetch-depth: 0
226226

227227
- name: Download artifact ipa
228-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
228+
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
229229
with:
230230
name: release-ios
231231
path: app/ios/output

0 commit comments

Comments
 (0)