Skip to content

Commit

Permalink
chore(deps-ci): bump the github-actions group with 9 updates (#135)
Browse files Browse the repository at this point in the history
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: J. Nick Koston <nick@koston.org>
  • Loading branch information
dependabot[bot] and bdraco authored Feb 7, 2025
1 parent 678eab0 commit 9baf0b3
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: 3.x
- uses: pre-commit/action@v3.0.0
- uses: pre-commit/action@v3.0.1

# Make sure commit messages follow the conventional commits convention:
# https://www.conventionalcommits.org
Expand All @@ -29,7 +29,7 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: wagoid/commitlint-github-action@v5.4.4
- uses: wagoid/commitlint-github-action@v6.2.1

test:
strategy:
Expand All @@ -56,15 +56,15 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- uses: snok/install-poetry@v1.3.4
- uses: snok/install-poetry@v1.4.1
- name: Install Dependencies
run: poetry install
shell: bash
- name: Test with Pytest
run: poetry run pytest --cov-report=xml
shell: bash
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5.0.3
uses: codecov/codecov-action@v5.3.1
with:
token: ${{ secrets.CODECOV_TOKEN }}

Expand All @@ -87,11 +87,11 @@ jobs:

# Dry run of PSR to build the distribution
- name: Test release
uses: python-semantic-release/python-semantic-release@v8.5.0
uses: python-semantic-release/python-semantic-release@v9.18.0
with:
root_options: --noop

- uses: snok/install-poetry@v1.3.4
- uses: snok/install-poetry@v1.4.1
- name: Install Dependencies
run: poetry install --only main,test_build
shell: bash
Expand Down Expand Up @@ -127,14 +127,14 @@ jobs:

# On main branch: Call PSR to build the distribution
- name: Release
uses: python-semantic-release/python-semantic-release@v9.8.6
uses: python-semantic-release/python-semantic-release@v9.18.0
id: release

with:
github_token: ${{ secrets.GITHUB_TOKEN }}

- name: Store the distribution packages
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: python-package-distributions
path: dist/
Expand All @@ -153,7 +153,7 @@ jobs:

steps:
- name: Download all the dists
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/
Expand All @@ -167,6 +167,6 @@ jobs:
ref: ${{ github.head_ref || github.ref_name }}

- name: Publish package distributions to GitHub Releases
uses: python-semantic-release/upload-to-gh-release@v9.8.6
uses: python-semantic-release/upload-to-gh-release@v9.8.9
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/issue-manager.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
issue-manager:
runs-on: ubuntu-latest
steps:
- uses: tiangolo/issue-manager@0.4.0
- uses: tiangolo/issue-manager@0.5.1
with:
token: ${{ secrets.GITHUB_TOKEN }}
config: >
Expand Down
2 changes: 1 addition & 1 deletion commitlint.config.js → commitlint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module.exports = {
export default {
extends: ["@commitlint/config-conventional"],
rules: {
"header-max-length": [0, "always", Infinity],
Expand Down

0 comments on commit 9baf0b3

Please sign in to comment.