Skip to content

Commit

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

Bump the actions-version group with 3 updates
  • Loading branch information
joaander authored Jul 1, 2024
2 parents 99617c5 + e514820 commit 0310dd0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build_wheels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ jobs:
oldest_numpy: '1.26.2'

steps:
- uses: actions/[email protected].6
- uses: actions/[email protected].7

- name: Build wheels
uses: pypa/cibuildwheel@v2.18.1
uses: pypa/cibuildwheel@v2.19.1
env:
CIBW_BUILD: "${{ matrix.python.version }}-*"
CIBW_TEST_REQUIRES: pytest==8.2.1 numpy==${{ matrix.python.oldest_numpy }}
Expand All @@ -67,7 +67,7 @@ jobs:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected].6
- uses: actions/[email protected].7

- uses: actions/[email protected]
name: Install Python
Expand Down Expand Up @@ -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.8.14
uses: pypa/gh-action-pypi-publish@v1.9.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.8.14
uses: pypa/gh-action-pypi-publish@v1.9.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 @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/[email protected].6
- uses: actions/[email protected].7
with:
fetch-depth: 0
submodules: true
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 @@ -21,7 +21,7 @@ jobs:
name: Run clang-tidy
runs-on: ubuntu-22.04
steps:
- uses: actions/[email protected].6
- uses: actions/[email protected].7
- name: Set up Python
uses: actions/[email protected]
with:
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 @@ -105,7 +105,7 @@ jobs:
cxx_compiler: clang++-12

steps:
- uses: actions/[email protected].6
- uses: actions/[email protected].7
with:
path: code
- name: Set up Python
Expand Down

0 comments on commit 0310dd0

Please sign in to comment.