Skip to content

Commit a459437

Browse files
⬆️ [upgraded_dependency] Upgraded copier template dependency (#52)
2 parents dbe72d1 + f9afb3b commit a459437

6 files changed

Lines changed: 28 additions & 21 deletions

File tree

.copier-answers.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# available at https://github.com/gt-sse-center/copier-UvScaffolding.
77
#
88

9-
_commit: v0.3.4
9+
_commit: v0.5.4
1010
_src_path: .
1111
author_email: github@DavidBrownell.com
1212
author_name: David Brownell
@@ -15,6 +15,7 @@ coverage_badge_gist_username: davidbrownell
1515
github_host: https://github.com
1616
github_repo_name: AutoGitSemVer
1717
github_username: davidbrownell
18+
install_ty: false
1819
license: MIT
1920
project_name: AutoGitSemVer
2021
python_package_name: AutoGitSemVer

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ Steps to reproduce the behavior:
1515
1. Go to '...'
1616
2. Click on '....'
1717
3. Scroll down to '....'
18-
4. See error
18+
4. Invoke via '....'
19+
5. See error
1920

2021
## Expected behavior
2122
A clear and concise description of what you expected to happen.
@@ -25,7 +26,7 @@ If applicable, add screenshots to help explain your problem.
2526

2627
## Environment (please complete the following information):
2728
- OS: [e.g. iOS]
28-
- Python Version: [e.g. 3.13, 3.12, 3.11, etc.]
29+
- Python Version: [e.g. 3.14, 3.13, 3.12, 3.11, etc.]
2930
- AutoGitSemVer Version [e.g. 1.2.3]
3031

3132
## Additional context

.github/actions/release_impl/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ runs:
3232
using: composite
3333
steps:
3434
- name: Install uv and python
35-
uses: astral-sh/setup-uv@v5
35+
uses: astral-sh/setup-uv@v7
3636
with:
3737
enable-cache: false # No uv.lock or requirements.txt files, so nothing to cache on
3838

3939
- name: Download Python Package
40-
uses: actions/download-artifact@v4
40+
uses: actions/download-artifact@v8
4141
with:
4242
name: Python package
4343
path: dist
@@ -98,7 +98,7 @@ runs:
9898
9999
- name: Upload Signatures
100100
if: ${{ inputs.minisign_private_key != '' }}
101-
uses: actions/upload-artifact@v4
101+
uses: actions/upload-artifact@v6
102102
with:
103103
name: Minisign signatures
104104
path: ./dist/*.minisig

.github/workflows/CICD_impl.yml

Lines changed: 17 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@ jobs:
5858
contents: read
5959

6060
steps:
61-
- uses: actions/checkout@v4
61+
- uses: actions/checkout@v6
6262

6363
- name: Install uv and python
64-
uses: astral-sh/setup-uv@v5
64+
uses: astral-sh/setup-uv@v7
6565
with:
6666
python-version: ${{ matrix.python_version }}
6767
enable-cache: true
@@ -75,7 +75,7 @@ jobs:
7575
COVERAGE_FILE: .coverage.${{ matrix.os }}.${{ matrix.python_version }}
7676

7777
- name: Upload Coverage Data
78-
uses: actions/upload-artifact@v4
78+
uses: actions/upload-artifact@v6
7979
with:
8080
name: .coverage.${{ matrix.os }}.${{ matrix.python_version }}
8181
path: .coverage.${{ matrix.os }}.${{ matrix.python_version }}
@@ -95,18 +95,18 @@ jobs:
9595
contents: read
9696

9797
steps:
98-
- uses: actions/checkout@v4
98+
- uses: actions/checkout@v6
9999

100100
- name: Install uv and python
101-
uses: astral-sh/setup-uv@v5
101+
uses: astral-sh/setup-uv@v7
102102
with:
103103
enable-cache: true
104104

105105
- name: Install Dependencies
106106
run: uv sync --frozen
107107

108108
- name: Download Coverage Data
109-
uses: actions/download-artifact@v4
109+
uses: actions/download-artifact@v8
110110
with:
111111
merge-multiple: true
112112

@@ -123,7 +123,7 @@ jobs:
123123
echo "**Total coverage:** ${TOTAL}%" >> $GITHUB_STEP_SUMMARY
124124
125125
- name: Upload Coverage Data
126-
uses: actions/upload-artifact@v4
126+
uses: actions/upload-artifact@v6
127127
with:
128128
name: .coverage.json
129129
path: .coverage.json
@@ -144,12 +144,12 @@ jobs:
144144
contents: read
145145

146146
steps:
147-
- uses: actions/checkout@v4
147+
- uses: actions/checkout@v6
148148
with:
149149
fetch-depth: 0
150150

151151
- name: Install uv and python
152-
uses: astral-sh/setup-uv@v5
152+
uses: astral-sh/setup-uv@v7
153153
with:
154154
enable-cache: true
155155
python-version: ${{ inputs.python_package_version }}
@@ -177,7 +177,7 @@ jobs:
177177
echo "**Package Version:** ${PACKAGE_VERSION}" >> $GITHUB_STEP_SUMMARY
178178
179179
- name: Upload Python Package
180-
uses: actions/upload-artifact@v4
180+
uses: actions/upload-artifact@v6
181181
with:
182182
name: Python package
183183
path: dist/**
@@ -204,14 +204,17 @@ jobs:
204204

205205
steps:
206206
- name: Install uv and python
207-
uses: astral-sh/setup-uv@v5
207+
uses: astral-sh/setup-uv@v7
208208
with:
209209
python-version: ${{ matrix.python_version }}
210210
enable-cache: false # No uv.lock or requirements.txt files, so nothing to cache on
211211
ignore-empty-workdir: true
212212

213+
- name: Create a virtual environment (since pyproject.toml doesn't exist)
214+
run: uv venv
215+
213216
- name: Download Python Package
214-
uses: actions/download-artifact@v4
217+
uses: actions/download-artifact@v8
215218
with:
216219
name: Python package
217220
path: dist
@@ -239,11 +242,11 @@ jobs:
239242
contents: write # To tag the repository and create the release
240243

241244
steps:
242-
- uses: actions/checkout@v4
245+
- uses: actions/checkout@v6
243246

244247
- name: Has Release Changes?
245248
id: has_release_changes
246-
uses: dorny/paths-filter@v3
249+
uses: dorny/paths-filter@v4
247250
with:
248251
filters: ./.github/release_sources.yaml
249252

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151

5252
steps:
5353
- name: Checkout repository
54-
uses: actions/checkout@v4
54+
uses: actions/checkout@v6
5555

5656
# Initializes the CodeQL tools for scanning.
5757
- name: Initialize CodeQL

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88

99
**Development:**
1010
[![uv](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/uv/main/assets/badge/v0.json)](https://github.com/astral-sh/uv)
11+
[![ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
12+
[![pytest](https://img.shields.io/badge/pytest-enabled-brightgreen)](https://docs.pytest.org/)
1113
[![CI](https://github.com/davidbrownell/AutoGitSemVer/actions/workflows/CICD.yml/badge.svg)](https://github.com/davidbrownell/AutoGitSemVer/actions/workflows/CICD.yml)
1214
[![Code Coverage](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/davidbrownell/f15146b1b8fdc0a5d45ac0eb786a84f7/raw/AutoGitSemVer_code_coverage.json)](https://github.com/davidbrownell/AutoGitSemVer/actions)
1315
[![GitHub commit activity](https://img.shields.io/github/commit-activity/y/davidbrownell/AutoGitSemVer?color=dark-green)](https://github.com/davidbrownell/AutoGitSemVer/commits/main/)

0 commit comments

Comments
 (0)