Skip to content

Commit 0ecf5c5

Browse files
authored
Merge branch 'potel-base' into antonpirker/potel/aws
2 parents 7388bc0 + 7cf7373 commit 0ecf5c5

File tree

90 files changed

+837
-457
lines changed

Some content is hidden

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

90 files changed

+837
-457
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches:
66
- master
77
- release/**
8-
- sentry-sdk-2.0
8+
- potel-base
99

1010
pull_request:
1111

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
push:
1616
branches:
1717
- master
18-
- sentry-sdk-2.0
18+
- potel-base
1919
pull_request:
2020
schedule:
2121
- cron: '18 18 * * 3'

.github/workflows/enforce-license-compliance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- master
77
- main
88
- release/*
9-
- sentry-sdk-2.0
9+
- potel-base
1010
pull_request:
1111

1212
# Cancel in progress workflows on pull_requests.

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
steps:
2121
- name: Get auth token
2222
id: token
23-
uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1.11.0
23+
uses: actions/create-github-app-token@c1a285145b9d317df6ced56c09f525b5c2b6f755 # v1.11.1
2424
with:
2525
app-id: ${{ vars.SENTRY_RELEASE_BOT_CLIENT_ID }}
2626
private-key: ${{ secrets.SENTRY_RELEASE_BOT_PRIVATE_KEY }}

.github/workflows/test-integrations-ai.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
branches:
99
- master
1010
- release/**
11-
- sentry-sdk-2.0
11+
- potel-base
1212
pull_request:
1313
# Cancel in progress workflows on pull_requests.
1414
# https://docs.github.com/en/actions/using-jobs/using-concurrency#example-using-a-fallback-value
@@ -30,7 +30,7 @@ jobs:
3030
fail-fast: false
3131
matrix:
3232
python-version: ["3.7","3.9","3.11","3.12","3.13"]
33-
os: [ubuntu-latest]
33+
os: [ubuntu-22.04]
3434
steps:
3535
- uses: actions/[email protected]
3636
- uses: actions/setup-python@v5
@@ -70,7 +70,7 @@ jobs:
7070
coverage xml
7171
- name: Upload coverage to Codecov
7272
if: ${{ !cancelled() }}
73-
uses: codecov/[email protected].1
73+
uses: codecov/[email protected].2
7474
with:
7575
token: ${{ secrets.CODECOV_TOKEN }}
7676
files: coverage.xml
@@ -92,7 +92,7 @@ jobs:
9292
fail-fast: false
9393
matrix:
9494
python-version: ["3.8","3.9","3.11","3.12","3.13"]
95-
os: [ubuntu-latest]
95+
os: [ubuntu-22.04]
9696
steps:
9797
- uses: actions/[email protected]
9898
- uses: actions/setup-python@v5
@@ -132,7 +132,7 @@ jobs:
132132
coverage xml
133133
- name: Upload coverage to Codecov
134134
if: ${{ !cancelled() }}
135-
uses: codecov/[email protected].1
135+
uses: codecov/[email protected].2
136136
with:
137137
token: ${{ secrets.CODECOV_TOKEN }}
138138
files: coverage.xml

.github/workflows/test-integrations-aws.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
branches:
99
- master
1010
- release/**
11-
- sentry-sdk-2.0
11+
- potel-base
1212
# XXX: We are using `pull_request_target` instead of `pull_request` because we want
1313
# this to run on forks with access to the secrets necessary to run the test suite.
1414
# Prefer to use `pull_request` when possible.
@@ -62,7 +62,7 @@ jobs:
6262
fail-fast: false
6363
matrix:
6464
python-version: ["3.9"]
65-
os: [ubuntu-latest]
65+
os: [ubuntu-22.04]
6666
needs: check-permissions
6767
steps:
6868
- uses: actions/[email protected]
@@ -89,7 +89,7 @@ jobs:
8989
coverage xml
9090
- name: Upload coverage to Codecov
9191
if: ${{ !cancelled() }}
92-
uses: codecov/[email protected].1
92+
uses: codecov/[email protected].2
9393
with:
9494
token: ${{ secrets.CODECOV_TOKEN }}
9595
files: coverage.xml

.github/workflows/test-integrations-cloud.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
branches:
99
- master
1010
- release/**
11-
- sentry-sdk-2.0
11+
- potel-base
1212
pull_request:
1313
# Cancel in progress workflows on pull_requests.
1414
# https://docs.github.com/en/actions/using-jobs/using-concurrency#example-using-a-fallback-value
@@ -30,7 +30,7 @@ jobs:
3030
fail-fast: false
3131
matrix:
3232
python-version: ["3.8","3.11","3.12","3.13"]
33-
os: [ubuntu-latest]
33+
os: [ubuntu-22.04]
3434
steps:
3535
- uses: actions/[email protected]
3636
- uses: actions/setup-python@v5
@@ -66,7 +66,7 @@ jobs:
6666
coverage xml
6767
- name: Upload coverage to Codecov
6868
if: ${{ !cancelled() }}
69-
uses: codecov/[email protected].1
69+
uses: codecov/[email protected].2
7070
with:
7171
token: ${{ secrets.CODECOV_TOKEN }}
7272
files: coverage.xml
@@ -88,7 +88,7 @@ jobs:
8888
fail-fast: false
8989
matrix:
9090
python-version: ["3.7","3.9","3.11","3.12","3.13"]
91-
os: [ubuntu-latest]
91+
os: [ubuntu-22.04]
9292
steps:
9393
- uses: actions/[email protected]
9494
- uses: actions/setup-python@v5
@@ -124,7 +124,7 @@ jobs:
124124
coverage xml
125125
- name: Upload coverage to Codecov
126126
if: ${{ !cancelled() }}
127-
uses: codecov/[email protected].1
127+
uses: codecov/[email protected].2
128128
with:
129129
token: ${{ secrets.CODECOV_TOKEN }}
130130
files: coverage.xml

.github/workflows/test-integrations-common.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
branches:
99
- master
1010
- release/**
11-
- sentry-sdk-2.0
11+
- potel-base
1212
pull_request:
1313
# Cancel in progress workflows on pull_requests.
1414
# https://docs.github.com/en/actions/using-jobs/using-concurrency#example-using-a-fallback-value
@@ -30,7 +30,7 @@ jobs:
3030
fail-fast: false
3131
matrix:
3232
python-version: ["3.7","3.8","3.9","3.10","3.11","3.12","3.13"]
33-
os: [ubuntu-latest]
33+
os: [ubuntu-22.04]
3434
steps:
3535
- uses: actions/[email protected]
3636
- uses: actions/setup-python@v5
@@ -54,7 +54,7 @@ jobs:
5454
coverage xml
5555
- name: Upload coverage to Codecov
5656
if: ${{ !cancelled() }}
57-
uses: codecov/[email protected].1
57+
uses: codecov/[email protected].2
5858
with:
5959
token: ${{ secrets.CODECOV_TOKEN }}
6060
files: coverage.xml

.github/workflows/test-integrations-dbs.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
branches:
99
- master
1010
- release/**
11-
- sentry-sdk-2.0
11+
- potel-base
1212
pull_request:
1313
# Cancel in progress workflows on pull_requests.
1414
# https://docs.github.com/en/actions/using-jobs/using-concurrency#example-using-a-fallback-value
@@ -30,7 +30,7 @@ jobs:
3030
fail-fast: false
3131
matrix:
3232
python-version: ["3.7","3.8","3.11","3.12","3.13"]
33-
os: [ubuntu-latest]
33+
os: [ubuntu-22.04]
3434
services:
3535
postgres:
3636
image: postgres
@@ -93,7 +93,7 @@ jobs:
9393
coverage xml
9494
- name: Upload coverage to Codecov
9595
if: ${{ !cancelled() }}
96-
uses: codecov/[email protected].1
96+
uses: codecov/[email protected].2
9797
with:
9898
token: ${{ secrets.CODECOV_TOKEN }}
9999
files: coverage.xml
@@ -115,7 +115,7 @@ jobs:
115115
fail-fast: false
116116
matrix:
117117
python-version: ["3.7","3.8","3.9","3.10","3.11","3.12"]
118-
os: [ubuntu-latest]
118+
os: [ubuntu-22.04]
119119
services:
120120
postgres:
121121
image: postgres
@@ -178,7 +178,7 @@ jobs:
178178
coverage xml
179179
- name: Upload coverage to Codecov
180180
if: ${{ !cancelled() }}
181-
uses: codecov/[email protected].1
181+
uses: codecov/[email protected].2
182182
with:
183183
token: ${{ secrets.CODECOV_TOKEN }}
184184
files: coverage.xml

.github/workflows/test-integrations-graphql.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
branches:
99
- master
1010
- release/**
11-
- sentry-sdk-2.0
11+
- potel-base
1212
pull_request:
1313
# Cancel in progress workflows on pull_requests.
1414
# https://docs.github.com/en/actions/using-jobs/using-concurrency#example-using-a-fallback-value
@@ -30,7 +30,7 @@ jobs:
3030
fail-fast: false
3131
matrix:
3232
python-version: ["3.7","3.8","3.12","3.13"]
33-
os: [ubuntu-latest]
33+
os: [ubuntu-22.04]
3434
steps:
3535
- uses: actions/[email protected]
3636
- uses: actions/setup-python@v5
@@ -66,7 +66,7 @@ jobs:
6666
coverage xml
6767
- name: Upload coverage to Codecov
6868
if: ${{ !cancelled() }}
69-
uses: codecov/[email protected].1
69+
uses: codecov/[email protected].2
7070
with:
7171
token: ${{ secrets.CODECOV_TOKEN }}
7272
files: coverage.xml
@@ -88,7 +88,7 @@ jobs:
8888
fail-fast: false
8989
matrix:
9090
python-version: ["3.7","3.8","3.11","3.12"]
91-
os: [ubuntu-latest]
91+
os: [ubuntu-22.04]
9292
steps:
9393
- uses: actions/[email protected]
9494
- uses: actions/setup-python@v5
@@ -124,7 +124,7 @@ jobs:
124124
coverage xml
125125
- name: Upload coverage to Codecov
126126
if: ${{ !cancelled() }}
127-
uses: codecov/[email protected].1
127+
uses: codecov/[email protected].2
128128
with:
129129
token: ${{ secrets.CODECOV_TOKEN }}
130130
files: coverage.xml

0 commit comments

Comments
 (0)