Skip to content

Commit

Permalink
Merge pull request #1285 from cjolowicz/dependabot/github_actions/act…
Browse files Browse the repository at this point in the history
…ions-eb191ddb75

Bump the actions group with 8 updates
  • Loading branch information
edgarrmondragon authored Jan 21, 2025
2 parents 036160a + a704294 commit 4d74d15
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4.2.2

- name: Run Labeler
uses: crazy-max/ghaction-github-labeler@v4.1.0
uses: crazy-max/ghaction-github-labeler@v5.1.0
with:
skip-delete: true
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4.2.2
with:
fetch-depth: 2

Expand Down Expand Up @@ -57,21 +57,21 @@ jobs:
- name: Publish package on PyPI
if: steps.check-version.outputs.tag
uses: pypa/gh-action-pypi-publish@v1.8.7
uses: pypa/gh-action-pypi-publish@v1.12.3
with:
user: __token__
password: ${{ secrets.PYPI_TOKEN }}

- name: Publish package on TestPyPI
if: "! steps.check-version.outputs.tag"
uses: pypa/gh-action-pypi-publish@v1.8.7
uses: pypa/gh-action-pypi-publish@v1.12.3
with:
user: __token__
password: ${{ secrets.TEST_PYPI_TOKEN }}
repository_url: https://test.pypi.org/legacy/

- name: Publish the release notes
uses: release-drafter/release-drafter@v5.24.0
uses: release-drafter/release-drafter@v6.1.0
with:
publish: ${{ steps.check-version.outputs.tag != '' }}
tag: ${{ steps.check-version.outputs.tag }}
Expand Down
20 changes: 11 additions & 9 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:

steps:
- name: Check out the repository
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4.2.2

- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5.3.0
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
print("::set-output name=result::{}".format(result))
- name: Restore pre-commit cache
uses: actions/cache@v3.3.1
uses: actions/cache@v4.2.0
if: matrix.session == 'pre-commit'
with:
path: ~/.cache/pre-commit
Expand All @@ -112,14 +112,15 @@ jobs:
- name: Upload coverage data
if: always() && matrix.session == 'tests'
uses: "actions/upload-artifact@v3.1.2"
uses: "actions/upload-artifact@v4.6.0"
with:
name: coverage-data
include-hidden-files: true
name: coverage-data-${{ runner.os }}-${{ matrix.python }}
path: ".coverage.*"

- name: Upload documentation
if: matrix.session == 'docs-build'
uses: actions/upload-artifact@v3.1.2
uses: actions/upload-artifact@v4.6.0
with:
name: docs
path: docs/_build
Expand All @@ -129,7 +130,7 @@ jobs:
needs: tests
steps:
- name: Check out the repository
uses: actions/checkout@v3.5.3
uses: actions/checkout@v4.2.2

- name: Set up Python
uses: actions/setup-python@v5.3.0
Expand Down Expand Up @@ -159,9 +160,10 @@ jobs:
pip install .
- name: Download coverage data
uses: actions/download-artifact@v3.0.2
uses: actions/download-artifact@v4.1.8
with:
name: coverage-data
merge-multiple: true
pattern: coverage-data-*

- name: Combine coverage data and display human readable report
run: |
Expand All @@ -172,4 +174,4 @@ jobs:
nox --session=coverage -- xml
- name: Upload coverage report
uses: codecov/codecov-action@v3.1.4
uses: codecov/codecov-action@v5.1.2

0 comments on commit 4d74d15

Please sign in to comment.