Skip to content

Commit c4fa74d

Browse files
authored
Merge branch 'master' into support-apk-aab-ipa-upload
2 parents ce71122 + 43ffe3b commit c4fa74d

Some content is hidden

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

42 files changed

+495
-403
lines changed

.craft.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
minVersion: '0.23.1'
1+
minVersion: "0.23.1"
22
changelogPolicy: auto
33
preReleaseCommand: ruby .scripts/bump-version.rb
44
targets:
5-
- name: gem
6-
- name: registry
7-
sdks:
8-
'gem:fastlane-plugin-sentry':
9-
- name: github
5+
- name: gem
6+
- name: registry
7+
sdks:
8+
"gem:fastlane-plugin-sentry":
9+
- name: github

.github/dependabot.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
version: 2
22
updates:
3-
4-
- package-ecosystem: "github-actions"
5-
directory: "/"
6-
schedule:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
76
interval: weekly

.github/workflows/add-platform-label.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
permissions:
1212
issues: write
1313
steps:
14-
- uses: andymckay/labeler@e6c4322d0397f3240f0e7e30a33b5c5df2d39e90
14+
- uses: andymckay/labeler@e6c4322d0397f3240f0e7e30a33b5c5df2d39e90 # v1.0.4
1515
with:
1616
add-labels: "Cocoa"
1717
repo-token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/changelog-preview.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,18 @@ name: Changelog Preview
22
on:
33
pull_request_target:
44
types:
5-
- opened
6-
- synchronize
7-
- reopened
8-
- edited
9-
- labeled
10-
- unlabeled
5+
- opened
6+
- synchronize
7+
- reopened
8+
- edited
9+
- labeled
10+
- unlabeled
1111
permissions:
1212
contents: write
1313
pull-requests: write
14+
statuses: write
1415

1516
jobs:
1617
changelog-preview:
17-
uses: getsentry/craft/.github/workflows/changelog-preview.yml@v2
18+
uses: getsentry/craft/.github/workflows/changelog-preview.yml@fd370d4d54bec9ff07f909d88a3c4aec6f0ba22b # v2
1819
secrets: inherit

.github/workflows/danger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ jobs:
1818
name: Danger
1919
runs-on: ubuntu-24.04
2020
steps:
21-
- uses: getsentry/github-workflows/danger@v3
21+
- uses: getsentry/github-workflows/danger@95603f4efe938315ff0dd427a1f2bb40b1889a92 # v3

.github/workflows/integration-test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
matrix:
1414
os: [macos-latest, windows-latest, ubuntu-latest]
1515
steps:
16-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
17-
- uses: actions/setup-python@v6
16+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
17+
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
1818
with:
19-
python-version: '3.11.9'
20-
- uses: ruby/setup-ruby@v1
19+
python-version: "3.11.9"
20+
- uses: ruby/setup-ruby@90be1154f987f4dc0fe0dd0feedac9e473aa4ba8 # v1.286.0
2121
with:
22-
ruby-version: '3.1.2'
22+
ruby-version: "3.1.2"
2323

2424
- if: matrix.os != 'windows-latest'
2525
name: Install Fastlane {{ matrix.os }}

.github/workflows/prepare_release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@ jobs:
1919
steps:
2020
- name: Get auth token
2121
id: token
22-
uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2
22+
uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1
2323
with:
2424
app-id: ${{ vars.SENTRY_RELEASE_BOT_CLIENT_ID }}
2525
private-key: ${{ secrets.SENTRY_RELEASE_BOT_PRIVATE_KEY }}
26-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
26+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2727
with:
2828
token: ${{ steps.token.outputs.token }}
2929
fetch-depth: 0
3030
- name: Prepare release
31-
uses: getsentry/craft@c6e2f04939b6ee67030588afbb5af76b127d8203 # v2
31+
uses: getsentry/craft@fd370d4d54bec9ff07f909d88a3c4aec6f0ba22b # v2
3232
env:
3333
GITHUB_TOKEN: ${{ steps.token.outputs.token }}
3434
with:

.github/workflows/release.yml

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
name: Build Release
32

43
on:
@@ -14,16 +13,16 @@ jobs:
1413
name: Build
1514
runs-on: ubuntu-latest
1615
steps:
17-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
18-
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6
19-
- name: Set up Ruby
20-
uses: ruby/setup-ruby@v1
21-
with:
22-
ruby-version: 2.7
23-
- name: Build gem source
24-
run: bundle install && gem build fastlane-plugin-sentry.gemspec
25-
- name: Archive Artifacts
26-
uses: actions/upload-artifact@v6
27-
with:
28-
name: ${{ github.sha }}
29-
path: '*.gem'
16+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
17+
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
18+
- name: Set up Ruby
19+
uses: ruby/setup-ruby@90be1154f987f4dc0fe0dd0feedac9e473aa4ba8 # v1.286.0
20+
with:
21+
ruby-version: 2.7
22+
- name: Build gem source
23+
run: bundle install && gem build fastlane-plugin-sentry.gemspec
24+
- name: Archive Artifacts
25+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
26+
with:
27+
name: ${{ github.sha }}
28+
path: "*.gem"

.github/workflows/stale.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
name: 'close stale issues/PRs'
1+
name: "close stale issues/PRs"
22
on:
33
schedule:
4-
- cron: '0 0 * * *'
4+
- cron: "0 0 * * *"
55
workflow_dispatch:
66
jobs:
77
stale:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/stale@997185467fa4f803885201cee163a9f38240193d
10+
- uses: actions/stale@997185467fa4f803885201cee163a9f38240193d # v10.1.1
1111
with:
1212
repo-token: ${{ github.token }}
1313
days-before-stale: 21
@@ -43,5 +43,5 @@ jobs:
4343
4444
"A weed is but an unloved flower." ― _Ella Wheeler Wilcox_ 🥀
4545
skip-stale-pr-message: false
46-
close-pr-label:
46+
close-pr-label: ""
4747
close-pr-message: ""

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ jobs:
1111
test:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
14+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1515

1616
- name: Install sentry-cli
1717
run: curl -sL https://sentry.io/get-cli/ | bash
1818

19-
- uses: ruby/setup-ruby@v1
19+
- uses: ruby/setup-ruby@90be1154f987f4dc0fe0dd0feedac9e473aa4ba8 # v1.286.0
2020
with:
21-
ruby-version: '3.1.4'
21+
ruby-version: "3.1.4"
2222

2323
- run: gem install bundler -v '2.6.8'
2424
- run: bundle install

0 commit comments

Comments
 (0)