File tree Expand file tree Collapse file tree 10 files changed +15
-14
lines changed
install_python_and_poetry Expand file tree Collapse file tree 10 files changed +15
-14
lines changed Original file line number Diff line number Diff line change @@ -5,14 +5,14 @@ inputs:
5
5
badabump-version :
6
6
description : " Badabump version to use"
7
7
required : false
8
- default : " 21.3.3 "
8
+ default : " 22.1.0 "
9
9
10
10
runs :
11
11
using : " composite"
12
12
steps :
13
13
- id : " python"
14
14
name : " Install Python"
15
- uses : " actions/setup-python@v4.3.1 "
15
+ uses : " actions/setup-python@v4.4.0 "
16
16
with :
17
17
python-version-file : " .python-version"
18
18
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ inputs:
18
18
poetry-version :
19
19
description : " Poetry version to use"
20
20
required : false
21
- default : " 1.3.0 "
21
+ default : " 1.3.1 "
22
22
23
23
outputs :
24
24
python-path :
39
39
steps :
40
40
- id : " python"
41
41
name : " Install Python"
42
- uses : " actions/setup-python@v4.3.1 "
42
+ uses : " actions/setup-python@v4.4.0 "
43
43
with :
44
44
python-version : " ${{ inputs.python-version }}"
45
45
python-version-file : " ${{ inputs.python-version-file }}"
49
49
run : " pipx install --python='${{ steps.python.outputs.python-path }}' poetry==${{ inputs.poetry-version }}"
50
50
51
51
- name : " Cache venv"
52
- uses : " actions/cache@v3.0.11 "
52
+ uses : " actions/cache@v3.2.1 "
53
53
with :
54
54
path : " ./.venv/"
55
55
key : " venv-${{ runner.os }}-${{ steps.python.outputs.python-version }}-${{ hashFiles('poetry.lock') }}${{ inputs.cache-key-suffix }}"
Original file line number Diff line number Diff line change 14
14
shell : " bash"
15
15
16
16
- name : " Cache mypy"
17
- uses : " actions/cache@v3.0.11 "
17
+ uses : " actions/cache@v3.2.1 "
18
18
with :
19
19
path : " ./.mypy_cache/"
20
20
key : " mypy-${{ runner.os }}-${{ inputs.python-version }}"
Original file line number Diff line number Diff line change 36
36
shell : " bash"
37
37
38
38
- name : " Cache tox"
39
- uses : " actions/cache@v3.0.11 "
39
+ uses : " actions/cache@v3.2.1 "
40
40
with :
41
41
path : " ./.tox/"
42
42
key : " tox-${{ inputs.python-version }}"
Original file line number Diff line number Diff line change 29
29
runs-on : " ${{ matrix.os }}"
30
30
31
31
steps :
32
- - uses : " actions/checkout@v3.1 .0"
32
+ - uses : " actions/checkout@v3.2 .0"
33
33
34
34
- id : " python_and_poetry"
35
35
uses : " ./.github/actions/install_python_and_poetry"
69
69
options : " --entrypoint redis-server"
70
70
71
71
steps :
72
- - uses : " actions/checkout@v3.1 .0"
72
+ - uses : " actions/checkout@v3.2 .0"
73
73
74
74
- name : " Install system packages"
75
75
run : " sudo apt-get update -yqq && sudo apt-get install -yq locales-all"
Original file line number Diff line number Diff line change 25
25
runs-on : " ubuntu-latest"
26
26
27
27
steps :
28
- - uses : " actions/checkout@v3.1 .0"
28
+ - uses : " actions/checkout@v3.2 .0"
29
29
30
30
- id : " python_and_poetry"
31
31
uses : " ./.github/actions/install_python_and_poetry"
Original file line number Diff line number Diff line change 14
14
runs-on : " ubuntu-latest"
15
15
16
16
steps :
17
- - uses : " actions/checkout@v3.1 .0"
17
+ - uses : " actions/checkout@v3.2 .0"
18
18
19
19
- name : " Fetch git data"
20
20
run : |
Original file line number Diff line number Diff line change 14
14
runs-on : " ubuntu-latest"
15
15
16
16
steps :
17
- - uses : " actions/checkout@v3.1 .0"
17
+ - uses : " actions/checkout@v3.2 .0"
18
18
19
19
- id : " python_and_poetry"
20
20
uses : " ./.github/actions/install_python_and_poetry"
Original file line number Diff line number Diff line change 17
17
18
18
jobs :
19
19
create_release_pr :
20
+ if : " ${{ github.actor == 'playpauseandstop' }}"
20
21
name : " Create Release PR"
21
22
22
23
runs-on : " ubuntu-latest"
23
24
24
25
steps :
25
- - uses : " actions/checkout@v3.1 .0"
26
+ - uses : " actions/checkout@v3.2 .0"
26
27
with :
27
28
ref : " main"
28
29
Original file line number Diff line number Diff line change 25
25
app_id : " ${{ secrets.BADABUMP_APP_ID }}"
26
26
private_key : " ${{ secrets.BADABUMP_APP_PRIVATE_KEY }}"
27
27
28
- - uses : " actions/checkout@v3.1 .0"
28
+ - uses : " actions/checkout@v3.2 .0"
29
29
with :
30
30
ref : " main"
31
31
token : " ${{ steps.token.outputs.token }}"
You can’t perform that action at this time.
0 commit comments