Skip to content

Commit 462ccf6

Browse files
committed
upgrade WF versions
Signed-off-by: zethson <lukas.heumos@posteo.net>
1 parent 0c8da14 commit 462ccf6

File tree

4 files changed

+364
-279
lines changed

4 files changed

+364
-279
lines changed

cookietemple/create/templates/available_templates.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ cli:
1111
python:
1212
name: Python Commandline Package
1313
handle: cli-python
14-
version: 2.1.0
14+
version: 2.1.1
1515
available libraries: click
1616
short description: General Python package with command line interface
1717
long description: Best practice Python package with (optional) command line support (click).

cookietemple/create/templates/cli/cli_python/{{ cookiecutter.project_slug_no_hyphen }}/.github/workflows/build_package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
strategy:
1010
matrix:
1111
os: [macos-latest, ubuntu-latest, windows-latest]
12-
python: [3.7, 3.8, 3.9]
12+
python: [3.8, 3.9]
1313

1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v3
1616
name: Check out source-code repository
1717

1818
- name: Setup Python

cookietemple/create/templates/cli/cli_python/{{ cookiecutter.project_slug_no_hyphen }}/.github/workflows/run_tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
print("::set-output name=result::{}".format(result))
9999
100100
- name: Restore pre-commit cache
101-
uses: actions/cache@v2.1.6
101+
uses: actions/cache@v2.1.7
102102
if: matrix.session == 'pre-commit'
103103
with:
104104
path: ~/.cache/pre-commit
@@ -111,14 +111,14 @@ jobs:
111111

112112
- name: Upload coverage data
113113
if: always() && matrix.session == 'tests'
114-
uses: "actions/upload-artifact@v2.2.3"
114+
uses: actions/upload-artifact@v3
115115
with:
116116
name: coverage-data
117117
path: ".coverage.*"
118118

119119
- name: Upload documentation
120120
if: matrix.session == 'docs-build'
121-
uses: actions/upload-artifact@v2.2.4
121+
uses: actions/upload-artifact@v3
122122
with:
123123
name: docs
124124
path: docs/_build
@@ -128,10 +128,10 @@ jobs:
128128
needs: tests
129129
steps:
130130
- name: Check out the repository
131-
uses: actions/checkout@v2.3.4
131+
uses: actions/checkout@v3
132132

133133
- name: Set up Python 3.8
134-
uses: actions/setup-python@v2.2.2
134+
uses: actions/setup-python@v3
135135
with:
136136
python-version: 3.8
137137

@@ -148,7 +148,7 @@ jobs:
148148
nox --version
149149
150150
- name: Download coverage data
151-
uses: actions/download-artifact@v2.0.10
151+
uses: actions/download-artifact@v3
152152
with:
153153
name: coverage-data
154154

0 commit comments

Comments
 (0)