Skip to content

Commit fceb290

Browse files
Bump the actions group with 3 updates
Bumps the actions group with 3 updates: [actions/cache](https://github.com/actions/cache), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v6...v7) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 33e7066 commit fceb290

4 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ jobs:
237237
echo "LDFLAGS=-L$(brew --prefix)/lib -L/usr/local/opt/libomp/lib" >> $GITHUB_ENV
238238
echo "LD_LIBRARY_PATH=$(brew --prefix)/lib:/usr/local/opt/libomp/lib" >> $GITHUB_ENV
239239
echo "DYLD_LIBRARY_PATH=$(brew --prefix)/lib:/usr/local/opt/libomp/lib" >> $GITHUB_ENV
240-
- uses: actions/cache@v4
240+
- uses: actions/cache@v5
241241
with:
242242
path: ~/.cache/pip
243243
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('.github/workflows/build.yml') }}-${{ matrix.REQUIRES_PYNBODY }}-${{ matrix.REQUIRES_ASTROPY }}-${{ matrix.REQUIRES_ASTROQUERY }}-${{ matrix.REQUIRES_NUMBA }}-${{ matrix.REQUIRES_JAX }}

.github/workflows/build_pyodide_wheels.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
with:
5959
version: ${{ env.EMSCRIPTEN_VERSION }}
6060
- name: Cache GSL build
61-
uses: actions/cache@v4
61+
uses: actions/cache@v5
6262
id: cache-gsl
6363
with:
6464
path: .libs
@@ -93,7 +93,7 @@ jobs:
9393
run: |
9494
GALPY_VERSION="$(awk '/^current_version/{print $NF}' .bumpversion.cfg)"
9595
for f in dist/*$GALPY_VERSION*; do sudo cp -i -- "$f" "${f//$GALPY_VERSION/latest}"; done
96-
- uses: actions/upload-artifact@v5
96+
- uses: actions/upload-artifact@v6
9797
with:
9898
name: galpy-wheel-pyodide-${{ matrix.python-version }}
9999
path: dist/*.whl
@@ -108,7 +108,7 @@ jobs:
108108
mkdir tmp_wheelhouse
109109
mkdir wheelhouse
110110
- name: Download wheel artifacts
111-
uses: actions/download-artifact@v6
111+
uses: actions/download-artifact@v7
112112
with:
113113
path: tmp_wheelhouse/
114114
# Flatten directory structure into wheelhouse/

.github/workflows/build_windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ jobs:
200200
python-version: ${{ matrix.python-version }}
201201
allow-prereleases: true
202202
# Cache both conda and pip, conda done by setup-micromamba
203-
- uses: actions/cache@v4
203+
- uses: actions/cache@v5
204204
with:
205205
path: ~\AppData\Local\pip\Cache
206206
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('.github/workflows/build_windows.yml') }}-${{ matrix.REQUIRES_PYNBODY }}-${{ matrix.REQUIRES_ASTROPY }}-${{ matrix.REQUIRES_ASTROQUERY }}-${{ matrix.REQUIRES_NUMBA }}-${{ matrix.REQUIRES_JAX }}

.github/workflows/wheels.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
CIBW_REPAIR_WHEEL_COMMAND_MACOS: >
8585
DYLD_LIBRARY_PATH=$REPAIR_LIBRARY_PATH delocate-listdeps {wheel} &&
8686
DYLD_LIBRARY_PATH=$REPAIR_LIBRARY_PATH delocate-wheel -v --require-archs {delocate_archs} -w {dest_dir} {wheel}
87-
- uses: actions/upload-artifact@v5
87+
- uses: actions/upload-artifact@v6
8888
with:
8989
name: ${{ matrix.python[0] }}-${{ matrix.buildplat[1] }}_${{ matrix.buildplat[2] }}
9090
path: ./wheelhouse/*.whl
@@ -110,7 +110,7 @@ jobs:
110110
steps:
111111
- uses: actions/checkout@v6
112112
- run: mkdir wheelhouse
113-
- uses: actions/download-artifact@v6
113+
- uses: actions/download-artifact@v7
114114
with:
115115
name: ${{ matrix.python[0] }}-${{ matrix.buildplat[1] }}_${{ matrix.buildplat[2] }}
116116
path: wheelhouse/
@@ -202,7 +202,7 @@ jobs:
202202
run: |
203203
pip install build
204204
python -m build --sdist
205-
- uses: actions/upload-artifact@v5
205+
- uses: actions/upload-artifact@v6
206206
with:
207207
name: sdist
208208
path: ./dist/*.tar.gz
@@ -217,7 +217,7 @@ jobs:
217217
python-version: 3.x
218218
- name: Install GSL
219219
run: sudo apt-get install -y libgsl0-dev
220-
- uses: actions/download-artifact@v6
220+
- uses: actions/download-artifact@v7
221221
with:
222222
name: sdist
223223
- name: Build from sdist
@@ -248,7 +248,7 @@ jobs:
248248
- run: |
249249
mkdir tmp_wheelhouse
250250
mkdir wheelhouse
251-
- uses: actions/download-artifact@v6
251+
- uses: actions/download-artifact@v7
252252
with:
253253
path: tmp_wheelhouse/
254254
- run: find tmp_wheelhouse/ -mindepth 2 -type f -exec mv -i '{}' wheelhouse/ ';'
@@ -267,7 +267,7 @@ jobs:
267267
- run: |
268268
mkdir tmp_wheelhouse
269269
mkdir wheelhouse
270-
- uses: actions/download-artifact@v6
270+
- uses: actions/download-artifact@v7
271271
with:
272272
path: tmp_wheelhouse/
273273
- run: find tmp_wheelhouse/ -mindepth 2 -type f -exec mv -i '{}' wheelhouse/ ';'

0 commit comments

Comments
 (0)