Skip to content

Commit

Permalink
Merge pull request #385 from glotzerlab/dependabot-github_actions-tru…
Browse files Browse the repository at this point in the history
…nk-patch-actions-version-9d27a01a39

Bump the actions-version group with 4 updates
  • Loading branch information
joaander committed Sep 3, 2024
2 parents ab24422 + f83b734 commit 2d1e71f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build_wheels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ jobs:
- uses: actions/checkout@v4.1.7

- name: Build wheels
uses: pypa/cibuildwheel@v2.19.2
uses: pypa/cibuildwheel@v2.20.0
env:
CIBW_BUILD: "${{ matrix.python.version }}-*"
CIBW_TEST_REQUIRES: pytest==8.2.1 numpy==${{ matrix.python.oldest_numpy }}

- uses: actions/upload-artifact@v4.3.4
- uses: actions/upload-artifact@v4.4.0
with:
name: dist-python-${{ matrix.python.version }}-${{ matrix.os.base }}-${{ matrix.os.arch }}
path: ./wheelhouse/*.whl
Expand All @@ -69,7 +69,7 @@ jobs:
steps:
- uses: actions/checkout@v4.1.7

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

- uses: actions/upload-artifact@v4.3.4
- uses: actions/upload-artifact@v4.4.0
with:
name: dist-sdist
path: dist/*.tar.gz
Expand All @@ -107,15 +107,15 @@ 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.10.0
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}

- name: Upload to TestPyPI
# otherwise, upload to TestPyPi
if: ${{ !startsWith(github.ref, 'refs/tags/v') && (github.event_name != 'pull_request' || (github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]')) }}
uses: pypa/gh-action-pypi-publish@v1.9.0
uses: pypa/gh-action-pypi-publish@v1.10.0
with:
user: __token__
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
- name: Tar source
run: tar -cvJf "${name}-${tag:1}.tar.xz" "${name}-${tag:1}"

- uses: actions/upload-artifact@v4.3.4
- uses: actions/upload-artifact@v4.4.0
with:
name: release
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/style_check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
steps:
- uses: actions/checkout@v4.1.7
- name: Set up Python
uses: actions/setup-python@v5.1.1
uses: actions/setup-python@v5.2.0
with:
python-version: 3.12
- name: Install uv
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
with:
path: code
- name: Set up Python
uses: actions/setup-python@v5.1.1
uses: actions/setup-python@v5.2.0
with:
python-version: ${{ matrix.python }}
- name: Install uv
Expand Down

0 comments on commit 2d1e71f

Please sign in to comment.