-
Notifications
You must be signed in to change notification settings - Fork 10
ci: update GitHub Actions and add Dependabot #5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,37 @@ | ||||||||||||||||||||||||||||||||||||||
| version: 2 | ||||||||||||||||||||||||||||||||||||||
| updates: | ||||||||||||||||||||||||||||||||||||||
| - package-ecosystem: "github-actions" | ||||||||||||||||||||||||||||||||||||||
| directory: "/" | ||||||||||||||||||||||||||||||||||||||
| schedule: | ||||||||||||||||||||||||||||||||||||||
| interval: "weekly" | ||||||||||||||||||||||||||||||||||||||
| day: "monday" | ||||||||||||||||||||||||||||||||||||||
| time: "06:00" | ||||||||||||||||||||||||||||||||||||||
| timezone: "America/New_York" | ||||||||||||||||||||||||||||||||||||||
| open-pull-requests-limit: 10 | ||||||||||||||||||||||||||||||||||||||
| labels: | ||||||||||||||||||||||||||||||||||||||
| - "dependencies" | ||||||||||||||||||||||||||||||||||||||
| - "github-actions" | ||||||||||||||||||||||||||||||||||||||
| commit-message: | ||||||||||||||||||||||||||||||||||||||
| prefix: "ci" | ||||||||||||||||||||||||||||||||||||||
| groups: | ||||||||||||||||||||||||||||||||||||||
| github-actions: | ||||||||||||||||||||||||||||||||||||||
| patterns: | ||||||||||||||||||||||||||||||||||||||
| - "*" | ||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||
| - package-ecosystem: "pip" | ||||||||||||||||||||||||||||||||||||||
| directory: "/" | ||||||||||||||||||||||||||||||||||||||
| schedule: | ||||||||||||||||||||||||||||||||||||||
| interval: "weekly" | ||||||||||||||||||||||||||||||||||||||
| day: "monday" | ||||||||||||||||||||||||||||||||||||||
| time: "06:15" | ||||||||||||||||||||||||||||||||||||||
| timezone: "America/New_York" | ||||||||||||||||||||||||||||||||||||||
| open-pull-requests-limit: 10 | ||||||||||||||||||||||||||||||||||||||
| labels: | ||||||||||||||||||||||||||||||||||||||
| - "dependencies" | ||||||||||||||||||||||||||||||||||||||
| - "python" | ||||||||||||||||||||||||||||||||||||||
| commit-message: | ||||||||||||||||||||||||||||||||||||||
| prefix: "deps" | ||||||||||||||||||||||||||||||||||||||
| groups: | ||||||||||||||||||||||||||||||||||||||
| python-dependencies: | ||||||||||||||||||||||||||||||||||||||
| patterns: | ||||||||||||||||||||||||||||||||||||||
| - "*" | ||||||||||||||||||||||||||||||||||||||
|
Comment on lines
+20
to
+37
|
||||||||||||||||||||||||||||||||||||||
| - package-ecosystem: "pip" | |
| directory: "/" | |
| schedule: | |
| interval: "weekly" | |
| day: "monday" | |
| time: "06:15" | |
| timezone: "America/New_York" | |
| open-pull-requests-limit: 10 | |
| labels: | |
| - "dependencies" | |
| - "python" | |
| commit-message: | |
| prefix: "deps" | |
| groups: | |
| python-dependencies: | |
| patterns: | |
| - "*" |
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -17,12 +17,12 @@ jobs: | |||||||
| name: Build & Deploy Docs | ||||||||
| runs-on: ubuntu-latest | ||||||||
| steps: | ||||||||
| - uses: actions/checkout@v6 | ||||||||
| - uses: actions/checkout@v6.0.2 | ||||||||
| with: | ||||||||
| fetch-depth: 0 | ||||||||
|
|
||||||||
| - name: Install uv | ||||||||
| uses: astral-sh/setup-uv@v8 | ||||||||
| uses: astral-sh/setup-uv@v8.1.0 | ||||||||
| with: | ||||||||
| version: "latest" | ||||||||
|
|
||||||||
|
|
@@ -36,7 +36,7 @@ jobs: | |||||||
| run: uv run mkdocs build --strict | ||||||||
|
|
||||||||
| - name: Deploy to website repo | ||||||||
| uses: cpina/github-action-push-to-another-repository@v1.7.2 | ||||||||
| uses: cpina/github-action-push-to-another-repository@v1.7.3 | ||||||||
|
||||||||
| uses: cpina/github-action-push-to-another-repository@v1.7.3 | |
| # Pin to the full commit SHA for the v1.7.3 release to avoid mutable tag risk. | |
| uses: cpina/github-action-push-to-another-repository@<FULL_40_CHARACTER_COMMIT_SHA_FOR_V1.7.3> |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -12,12 +12,12 @@ jobs: | |||||
| name: Build Package | ||||||
| runs-on: ubuntu-latest | ||||||
| steps: | ||||||
| - uses: actions/checkout@v6 | ||||||
| - uses: actions/checkout@v6.0.2 | ||||||
| with: | ||||||
| fetch-depth: 0 | ||||||
|
|
||||||
| - name: Install uv | ||||||
| uses: astral-sh/setup-uv@v8 | ||||||
| uses: astral-sh/setup-uv@v8.1.0 | ||||||
| with: | ||||||
| version: "latest" | ||||||
|
|
||||||
|
|
@@ -28,7 +28,7 @@ jobs: | |||||
| run: uv build | ||||||
|
|
||||||
| - name: Upload build artifacts | ||||||
| uses: actions/upload-artifact@v4 | ||||||
| uses: actions/upload-artifact@v7.0.1 | ||||||
| with: | ||||||
| name: dist | ||||||
| path: dist/ | ||||||
|
|
@@ -42,13 +42,13 @@ jobs: | |||||
| id-token: write | ||||||
| steps: | ||||||
| - name: Download build artifacts | ||||||
| uses: actions/download-artifact@v4 | ||||||
| uses: actions/download-artifact@v8.0.1 | ||||||
| with: | ||||||
| name: dist | ||||||
| path: dist/ | ||||||
|
|
||||||
| - name: Publish to PyPI | ||||||
| uses: pypa/gh-action-pypi-publish@release/v1 | ||||||
| uses: pypa/gh-action-pypi-publish@v1.14.0 | ||||||
|
||||||
| uses: pypa/gh-action-pypi-publish@v1.14.0 | |
| uses: pypa/gh-action-pypi-publish@<FULL_40_CHARACTER_COMMIT_SHA_FOR_V1_14_0> # v1.14.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PR description mentions updating
codecov/codecov-action“where used”, but there’s no workflow/config in this repo referencing that action (searching the repo turns up no matches). Please either remove that bullet from the PR description or include the missing change if it was intended.