Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a9fbee6

Browse files
dependabot[bot]henryiii
authored andcommitted
chore(deps): bump the actions group across 1 directory with 3 updates
Bumps the actions group with 3 updates in the / directory: [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact) and [mamba-org/setup-micromamba](https://github.com/mamba-org/setup-micromamba). Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v6...v7) Updates `actions/download-artifact` from 7 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v7...v8) Updates `mamba-org/setup-micromamba` from 2 to 3 - [Release notes](https://github.com/mamba-org/setup-micromamba/releases) - [Commits](mamba-org/setup-micromamba@v2...v3) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: mamba-org/setup-micromamba dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent f7ba5d9 commit a9fbee6

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,15 @@ jobs:
4949
- name: Store the distribution files for use in other stages
5050
# `tests` and `publish` will use the same pre-built distributions,
5151
# so we make sure to release the exact same package that was tested
52-
uses: actions/upload-artifact@v6
52+
uses: actions/upload-artifact@v7
5353
with:
5454
name: python-distribution-files
5555
path: dist/
5656
retention-days: 1
5757
- name: Download files used for testing
5858
run: python tools/cache_urls_for_tests.py
5959
- name: Store downloaded files
60-
uses: actions/upload-artifact@v6
60+
uses: actions/upload-artifact@v7
6161
with:
6262
name: test-download-files
6363
path: ${{ env.VALIDATE_PYPROJECT_CACHE_REMOTE }}
@@ -85,10 +85,10 @@ jobs:
8585
allow-prereleases: true
8686
- uses: astral-sh/setup-uv@v7
8787
- name: Retrieve pre-built distribution files
88-
uses: actions/download-artifact@v7
88+
uses: actions/download-artifact@v8
8989
with: {name: python-distribution-files, path: dist/}
9090
- name: Retrieve test download files
91-
uses: actions/download-artifact@v7
91+
uses: actions/download-artifact@v8
9292
with:
9393
name: test-download-files
9494
path: ${{ env.VALIDATE_PYPROJECT_CACHE_REMOTE }}
@@ -114,7 +114,7 @@ jobs:
114114
steps:
115115
- uses: actions/checkout@v6
116116
- name: Setup Micromamba
117-
uses: mamba-org/setup-micromamba@v2
117+
uses: mamba-org/setup-micromamba@v3
118118
with:
119119
environment-name: test
120120
create-args: >-
@@ -123,10 +123,10 @@ jobs:
123123
tox
124124
curl
125125
- name: Retrieve pre-built distribution files
126-
uses: actions/download-artifact@v7
126+
uses: actions/download-artifact@v8
127127
with: {name: python-distribution-files, path: dist/}
128128
- name: Retrieve test download files
129-
uses: actions/download-artifact@v7
129+
uses: actions/download-artifact@v8
130130
with:
131131
name: test-download-files
132132
path: ${{ env.VALIDATE_PYPROJECT_CACHE_REMOTE }}
@@ -147,7 +147,7 @@ jobs:
147147
with: {python-version: "3.x"}
148148
- uses: astral-sh/setup-uv@v7
149149
- name: Retrieve pre-built distribution files
150-
uses: actions/download-artifact@v7
150+
uses: actions/download-artifact@v8
151151
with: {name: python-distribution-files, path: dist/}
152152
- name: Check links
153153
run: >-
@@ -174,7 +174,7 @@ jobs:
174174
with: {python-version: "3.x"}
175175
- uses: astral-sh/setup-uv@v7
176176
- name: Retrieve pre-built distribution files
177-
uses: actions/download-artifact@v7
177+
uses: actions/download-artifact@v8
178178
with: {name: python-distribution-files, path: dist/}
179179
- name: Publish Package
180180
env:

0 commit comments

Comments
 (0)