Skip to content

Commit de2fb41

Browse files
chore(deps): bump the actions group across 1 directory with 6 updates
Bumps the actions group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `8` | | [prefix-dev/setup-pixi](https://github.com/prefix-dev/setup-pixi) | `0.9.4` | `0.9.5` | | [codecov/codecov-action](https://github.com/codecov/codecov-action) | `5.5.2` | `6.0.0` | | [google-github-actions/auth](https://github.com/google-github-actions/auth) | `2` | `3` | | [google-github-actions/setup-gcloud](https://github.com/google-github-actions/setup-gcloud) | `2` | `3` | | [actions/deploy-pages](https://github.com/actions/deploy-pages) | `4` | `5` | Updates `actions/download-artifact` from 4 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v8) Updates `prefix-dev/setup-pixi` from 0.9.4 to 0.9.5 - [Release notes](https://github.com/prefix-dev/setup-pixi/releases) - [Commits](prefix-dev/setup-pixi@v0.9.4...v0.9.5) Updates `codecov/codecov-action` from 5.5.2 to 6.0.0 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](codecov/codecov-action@v5.5.2...v6.0.0) Updates `google-github-actions/auth` from 2 to 3 - [Release notes](https://github.com/google-github-actions/auth/releases) - [Changelog](https://github.com/google-github-actions/auth/blob/main/CHANGELOG.md) - [Commits](google-github-actions/auth@v2...v3) Updates `google-github-actions/setup-gcloud` from 2 to 3 - [Release notes](https://github.com/google-github-actions/setup-gcloud/releases) - [Changelog](https://github.com/google-github-actions/setup-gcloud/blob/main/CHANGELOG.md) - [Commits](google-github-actions/setup-gcloud@v2...v3) Updates `actions/deploy-pages` from 4 to 5 - [Release notes](https://github.com/actions/deploy-pages/releases) - [Commits](actions/deploy-pages@v4...v5) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: prefix-dev/setup-pixi dependency-version: 0.9.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: codecov/codecov-action dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: google-github-actions/auth dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: google-github-actions/setup-gcloud dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/deploy-pages dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent eb0c2a1 commit de2fb41

File tree

9 files changed

+31
-31
lines changed

9 files changed

+31
-31
lines changed

.github/workflows/cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
matrix:
6767
package: [datamodels, pipeline, webservice]
6868
steps:
69-
- uses: actions/download-artifact@v4
69+
- uses: actions/download-artifact@v8
7070
with:
7171
name: Packages-${{ matrix.package }}
7272
path: dist
@@ -89,7 +89,7 @@ jobs:
8989
matrix:
9090
package: [datamodels, pipeline, webservice]
9191
steps:
92-
- uses: actions/download-artifact@v4
92+
- uses: actions/download-artifact@v8
9393
with:
9494
name: Packages-${{ matrix.package }}
9595
path: dist

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
fetch-depth: 0
3434

3535
- name: Set up pixi
36-
uses: prefix-dev/setup-pixi@v0.9.4
36+
uses: prefix-dev/setup-pixi@v0.9.5
3737
with:
3838
pixi-version: v0.63.2
3939
environments: ${{ matrix.python-version }}
@@ -54,6 +54,6 @@ jobs:
5454
pixi run pytest src/ca_biositing/webservice -m "not integration" --cov=ca_biositing.webservice --cov-report=xml --cov-append --cov-report=term-missing
5555
5656
- name: Upload coverage report
57-
uses: codecov/codecov-action@v5.5.2
57+
uses: codecov/codecov-action@v6.0.0
5858
with:
5959
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/copilot-setup-steps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
uses: actions/checkout@v6
3030

3131
- name: Set up pixi
32-
uses: prefix-dev/setup-pixi@v0.9.4
32+
uses: prefix-dev/setup-pixi@v0.9.5
3333
with:
3434
pixi-version: v0.56.0
3535
cache: false # No caching

.github/workflows/deploy-production.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ jobs:
4141
fetch-depth: 0
4242

4343
- name: Authenticate to GCP
44-
uses: google-github-actions/auth@v2
44+
uses: google-github-actions/auth@v3
4545
with:
4646
workload_identity_provider: ${{ env.WIF_PROVIDER }}
4747
service_account: ${{ env.DEPLOYER_SA }}
4848

4949
- name: Set up pixi
50-
uses: prefix-dev/setup-pixi@v0.9.4
50+
uses: prefix-dev/setup-pixi@v0.9.5
5151
with:
5252
pixi-version: v0.63.2
5353
environments: deployment
@@ -108,13 +108,13 @@ jobs:
108108
fetch-depth: 0
109109

110110
- name: Authenticate to GCP
111-
uses: google-github-actions/auth@v2
111+
uses: google-github-actions/auth@v3
112112
with:
113113
workload_identity_provider: ${{ env.WIF_PROVIDER }}
114114
service_account: ${{ env.DEPLOYER_SA }}
115115

116116
- name: Set up pixi
117-
uses: prefix-dev/setup-pixi@v0.9.4
117+
uses: prefix-dev/setup-pixi@v0.9.5
118118
with:
119119
pixi-version: v0.63.2
120120
environments: deployment
@@ -138,13 +138,13 @@ jobs:
138138
- uses: actions/checkout@v6
139139

140140
- name: Authenticate to GCP
141-
uses: google-github-actions/auth@v2
141+
uses: google-github-actions/auth@v3
142142
with:
143143
workload_identity_provider: ${{ env.WIF_PROVIDER }}
144144
service_account: ${{ env.DEPLOYER_SA }}
145145

146146
- name: Set up pixi
147-
uses: prefix-dev/setup-pixi@v0.9.4
147+
uses: prefix-dev/setup-pixi@v0.9.5
148148
with:
149149
pixi-version: v0.63.2
150150
environments: deployment
@@ -166,13 +166,13 @@ jobs:
166166
- uses: actions/checkout@v6
167167

168168
- name: Authenticate to GCP
169-
uses: google-github-actions/auth@v2
169+
uses: google-github-actions/auth@v3
170170
with:
171171
workload_identity_provider: ${{ env.WIF_PROVIDER }}
172172
service_account: ${{ env.DEPLOYER_SA }}
173173

174174
- name: Set up pixi
175-
uses: prefix-dev/setup-pixi@v0.9.4
175+
uses: prefix-dev/setup-pixi@v0.9.5
176176
with:
177177
pixi-version: v0.63.2
178178
environments: deployment
@@ -194,13 +194,13 @@ jobs:
194194
- uses: actions/checkout@v6
195195

196196
- name: Authenticate to GCP
197-
uses: google-github-actions/auth@v2
197+
uses: google-github-actions/auth@v3
198198
with:
199199
workload_identity_provider: ${{ env.WIF_PROVIDER }}
200200
service_account: ${{ env.DEPLOYER_SA }}
201201

202202
- name: Set up Cloud SDK
203-
uses: google-github-actions/setup-gcloud@v2
203+
uses: google-github-actions/setup-gcloud@v3
204204

205205
- name: Validate services are healthy
206206
run: bash scripts/validate-deployment.sh

.github/workflows/deploy-staging.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ jobs:
4040
fetch-depth: 0
4141

4242
- name: Authenticate to GCP
43-
uses: google-github-actions/auth@v2
43+
uses: google-github-actions/auth@v3
4444
with:
4545
workload_identity_provider: ${{ env.WIF_PROVIDER }}
4646
service_account: ${{ env.DEPLOYER_SA }}
4747

4848
- name: Set up pixi
49-
uses: prefix-dev/setup-pixi@v0.9.4
49+
uses: prefix-dev/setup-pixi@v0.9.5
5050
with:
5151
pixi-version: v0.63.2
5252
environments: deployment
@@ -103,13 +103,13 @@ jobs:
103103
fetch-depth: 0
104104

105105
- name: Authenticate to GCP
106-
uses: google-github-actions/auth@v2
106+
uses: google-github-actions/auth@v3
107107
with:
108108
workload_identity_provider: ${{ env.WIF_PROVIDER }}
109109
service_account: ${{ env.DEPLOYER_SA }}
110110

111111
- name: Set up pixi
112-
uses: prefix-dev/setup-pixi@v0.9.4
112+
uses: prefix-dev/setup-pixi@v0.9.5
113113
with:
114114
pixi-version: v0.63.2
115115
environments: deployment
@@ -131,13 +131,13 @@ jobs:
131131
- uses: actions/checkout@v6
132132

133133
- name: Authenticate to GCP
134-
uses: google-github-actions/auth@v2
134+
uses: google-github-actions/auth@v3
135135
with:
136136
workload_identity_provider: ${{ env.WIF_PROVIDER }}
137137
service_account: ${{ env.DEPLOYER_SA }}
138138

139139
- name: Set up pixi
140-
uses: prefix-dev/setup-pixi@v0.9.4
140+
uses: prefix-dev/setup-pixi@v0.9.5
141141
with:
142142
pixi-version: v0.63.2
143143
environments: deployment
@@ -159,13 +159,13 @@ jobs:
159159
- uses: actions/checkout@v6
160160

161161
- name: Authenticate to GCP
162-
uses: google-github-actions/auth@v2
162+
uses: google-github-actions/auth@v3
163163
with:
164164
workload_identity_provider: ${{ env.WIF_PROVIDER }}
165165
service_account: ${{ env.DEPLOYER_SA }}
166166

167167
- name: Set up pixi
168-
uses: prefix-dev/setup-pixi@v0.9.4
168+
uses: prefix-dev/setup-pixi@v0.9.5
169169
with:
170170
pixi-version: v0.63.2
171171
environments: deployment
@@ -187,13 +187,13 @@ jobs:
187187
- uses: actions/checkout@v6
188188

189189
- name: Authenticate to GCP
190-
uses: google-github-actions/auth@v2
190+
uses: google-github-actions/auth@v3
191191
with:
192192
workload_identity_provider: ${{ env.WIF_PROVIDER }}
193193
service_account: ${{ env.DEPLOYER_SA }}
194194

195195
- name: Set up Cloud SDK
196-
uses: google-github-actions/setup-gcloud@v2
196+
uses: google-github-actions/setup-gcloud@v3
197197

198198
- name: Validate services are healthy
199199
run: bash scripts/validate-deployment.sh

.github/workflows/gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,4 @@ jobs:
6060

6161
- name: Deploy to GitHub Pages
6262
id: deployment
63-
uses: actions/deploy-pages@v4
63+
uses: actions/deploy-pages@v5

.github/workflows/migrations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
fetch-depth: 1
5959

6060
- name: Set up pixi
61-
uses: prefix-dev/setup-pixi@v0.9.4
61+
uses: prefix-dev/setup-pixi@v0.9.5
6262
with:
6363
pixi-version: v0.63.2
6464
environments: py312

.github/workflows/trigger-etl-production.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,13 +75,13 @@ jobs:
7575
- uses: actions/checkout@v6
7676

7777
- name: Authenticate to GCP
78-
uses: google-github-actions/auth@v2
78+
uses: google-github-actions/auth@v3
7979
with:
8080
workload_identity_provider: ${{ env.WIF_PROVIDER }}
8181
service_account: ${{ env.DEPLOYER_SA }}
8282

8383
- name: Set up pixi
84-
uses: prefix-dev/setup-pixi@v0.9.4
84+
uses: prefix-dev/setup-pixi@v0.9.5
8585
with:
8686
pixi-version: v0.63.2
8787
environments: deployment

.github/workflows/trigger-etl.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,13 +77,13 @@ jobs:
7777
- uses: actions/checkout@v6
7878

7979
- name: Authenticate to GCP
80-
uses: google-github-actions/auth@v2
80+
uses: google-github-actions/auth@v3
8181
with:
8282
workload_identity_provider: ${{ env.WIF_PROVIDER }}
8383
service_account: ${{ env.DEPLOYER_SA }}
8484

8585
- name: Set up pixi
86-
uses: prefix-dev/setup-pixi@v0.9.4
86+
uses: prefix-dev/setup-pixi@v0.9.5
8787
with:
8888
pixi-version: v0.63.2
8989
environments: deployment

0 commit comments

Comments
 (0)