Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): Bump the actions-version group with 7 updates #1299

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,12 @@ jobs:
oldest_sympy: '1.10'

steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.2
with:
submodules: "recursive"

- name: Build wheels
uses: pypa/cibuildwheel@v2.19.2
uses: pypa/cibuildwheel@v2.22.0
env:
CIBW_BUILD: "${{ matrix.python.version }}-*"
CIBW_SKIP: "{pp*,*-musllinux_*}"
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
matplotlib==${{ matrix.python.oldest_matplotlib }}
CIBW_TEST_COMMAND: "cd {package}/tests && pytest . -v --log-level=DEBUG"

- uses: actions/upload-artifact@v4.3.4
- uses: actions/upload-artifact@v4.5.0
with:
name: dist-${{ matrix.os.base }}-${{ matrix.os.version }}-${{ matrix.python.version }}
path: ./wheelhouse/*.whl
Expand All @@ -125,11 +125,11 @@ jobs:
runs-on: ubuntu-latest
if: ${{ contains(github.event.pull_request.labels.*.name, 'build_wheels') || github.event_name != 'pull_request' }}
steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.2
with:
submodules: "recursive"

- uses: actions/setup-python@v5.1.1
- uses: actions/setup-python@v5.3.0
name: Install Python
with:
python-version: '3.12'
Expand All @@ -143,7 +143,7 @@ jobs:
- name: Build sdist
run: python -m build --sdist --outdir dist/ .

- uses: actions/upload-artifact@v4.3.4
- uses: actions/upload-artifact@v4.5.0
with:
name: dist-sdist
path: dist/*.tar.gz
Expand All @@ -169,7 +169,7 @@ jobs:
- name: Upload to PyPI
# upload to PyPI on every tag starting with 'v'
if: startsWith(github.ref, 'refs/tags/v')
uses: pypa/gh-action-pypi-publish@v1.9.0
uses: pypa/gh-action-pypi-publish@v1.12.3
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ jobs:

steps:
- name: Checkout Code
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.2
with:
submodules: true

- name: Create Python Environment
uses: mamba-org/setup-micromamba@v1.9.0
uses: mamba-org/setup-micromamba@v2.0.3
with:
micromamba-version: '1.5.8-0'
environment-name: test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/style_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
container:
image: glotzerlab/ci:2021.11-clang10_py38
steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.2
with:
submodules: true
- name: Install pre-commit
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-conda-lockfiles.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
update:
uses: glotzerlab/workflows/.github/workflows/update-conda-lockfiles.yaml@ea2e25d07af862a1c696a932c2bd6b242d142049 # 0.2.0
uses: glotzerlab/workflows/.github/workflows/update-conda-lockfiles.yaml@a36a97114c60241b26217ce92abbb64621ac67c7 # 0.6.0
secrets: inherit
with:
branch: main
Expand Down
Loading