Skip to content

Commit

Permalink
Update CI action versions (#571)
Browse files Browse the repository at this point in the history
  • Loading branch information
brynpickering committed Feb 28, 2024
1 parent 872978d commit a6bb639
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/commit-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: mamba-org/setup-micromamba@v1
with:
Expand Down Expand Up @@ -53,6 +53,6 @@ jobs:

- name: upload coverage report to Codecov
if: github.ref == 'refs/heads/main'
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
env:
directory: "./reports/coverage/"
2 changes: 1 addition & 1 deletion .github/workflows/link-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: markdown-link-check
uses: gaurav-nelson/github-action-markdown-link-check@1.0.15
6 changes: 4 additions & 2 deletions .github/workflows/pr-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: mamba-org/setup-micromamba@v1
with:
Expand Down Expand Up @@ -81,11 +81,13 @@ jobs:
run: pytest

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
if: matrix.os == 'ubuntu-latest' && matrix.py3version == '12'
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
directory: "./reports/coverage/"
verbose: true

pre-release-version:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:

- name: Download built package from another workflow
uses: dawidd6/action-download-artifact@v2
uses: dawidd6/action-download-artifact@v3
with:
name: ${{ env.PACKAGENAME }}
workflow: pr-ci.yml
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ output = "reports/coverage/coverage.xml"

[tool.black]
line-length = 88
skip_magic_trailing_comma = true
skip-magic-trailing-comma = true
target-version = ['py310', 'py311', 'py312']
include = '\.pyi?$'
exclude = '''
Expand Down

0 comments on commit a6bb639

Please sign in to comment.