Skip to content

Commit 76cf03c

Browse files
committed
chore: revert codecov-upload and nightly wheel environment usage
1 parent 7e094d5 commit 76cf03c

File tree

4 files changed

+5
-12
lines changed

4 files changed

+5
-12
lines changed

.github/workflows/gpu_test.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ concurrency:
2323
jobs:
2424
test:
2525
name: py=${{ matrix.python-version }}
26-
environment: codecov-upload
27-
2826
runs-on: gpu-runner
2927
strategy:
3028
matrix:
@@ -77,5 +75,5 @@ jobs:
7775
- name: Upload coverage
7876
uses: codecov/codecov-action@13ce06bfc6bbe3ecf90edbbf1bc32fe5978ca1d3 # v5.3.1
7977
with:
80-
token: ${{ secrets.CODECOV_TOKEN }}
78+
token: ${{ secrets.CODECOV_TOKEN }} # zizmor: ignore[secrets-outside-env]
8179
verbose: true # optional (default = false)

.github/workflows/hypothesis.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ jobs:
2323

2424
hypothesis:
2525
name: Slow Hypothesis Tests
26-
environment: codecov-upload
2726
runs-on: "ubuntu-latest"
2827
defaults:
2928
run:
@@ -93,7 +92,7 @@ jobs:
9392
- name: Upload coverage
9493
uses: codecov/codecov-action@1af58845a975a7985b0beb0cbe6fbbb71a41dbad # v5.5.3
9594
with:
96-
token: ${{ secrets.CODECOV_TOKEN }}
95+
token: ${{ secrets.CODECOV_TOKEN }} # zizmor: ignore[secrets-outside-env]
9796
verbose: true # optional (default = false)
9897

9998
- name: Generate and publish the report

.github/workflows/nightly_wheels.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ concurrency:
1616
jobs:
1717
build_and_upload_nightly:
1818
name: Build and upload nightly wheels
19-
environment: nightly-wheel-upload
2019
runs-on: ubuntu-latest
2120

2221
steps:
@@ -43,4 +42,4 @@ jobs:
4342
uses: scientific-python/upload-nightly-action@5748273c71e2d8d3a61f3a11a16421c8954f9ecf
4443
with:
4544
artifacts_path: dist
46-
anaconda_nightly_upload_token: ${{ secrets.ANACONDA_ORG_UPLOAD_TOKEN }}
45+
anaconda_nightly_upload_token: ${{ secrets.ANACONDA_ORG_UPLOAD_TOKEN }} # zizmor: ignore[secrets-outside-env]

.github/workflows/test.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ concurrency:
2020
jobs:
2121
test:
2222
name: os=${{ matrix.os }}, py=${{ matrix.python-version }}, deps=${{ matrix.dependency-set }}
23-
environment: codecov-upload
2423
defaults:
2524
run:
2625
shell: bash
@@ -78,13 +77,11 @@ jobs:
7877
if: ${{ matrix.dependency-set == 'optional' && matrix.os == 'ubuntu-latest' }}
7978
uses: codecov/codecov-action@1af58845a975a7985b0beb0cbe6fbbb71a41dbad # v5.5.3
8079
with:
81-
token: ${{ secrets.CODECOV_TOKEN }}
80+
token: ${{ secrets.CODECOV_TOKEN }} # zizmor: ignore[secrets-outside-env]
8281
verbose: true # optional (default = false)
8382

8483
test-upstream-and-min-deps:
8584
name: py=${{ matrix.python-version }}-${{ matrix.dependency-set }}
86-
environment: codecov-upload
87-
8885
runs-on: ubuntu-latest
8986
strategy:
9087
matrix:
@@ -123,7 +120,7 @@ jobs:
123120
- name: Upload coverage
124121
uses: codecov/codecov-action@1af58845a975a7985b0beb0cbe6fbbb71a41dbad # v5.5.3
125122
with:
126-
token: ${{ secrets.CODECOV_TOKEN }}
123+
token: ${{ secrets.CODECOV_TOKEN }} # zizmor: ignore[secrets-outside-env]
127124
verbose: true # optional (default = false)
128125

129126
doctests:

0 commit comments

Comments
 (0)