9
9
runs-on : ubuntu-latest
10
10
steps :
11
11
- name : Checkout source code
12
- uses : actions/checkout@v3
12
+ uses : actions/checkout@v4
13
13
- name : Set up Python
14
- uses : actions/setup-python@v4
14
+ uses : actions/setup-python@v5
15
15
with :
16
16
python-version : " 3.13"
17
17
- name : Set up Go
18
- uses : actions/setup-go@v4
18
+ uses : actions/setup-go@v5
19
19
with :
20
20
go-version : " 1.21"
21
21
- name : Install dependencies
68
68
--health-retries 5
69
69
steps :
70
70
- name : Checkout source code
71
- uses : actions/checkout@v3
71
+ uses : actions/checkout@v4
72
72
- name : Set up Python ${{ matrix.python }}
73
- uses : actions/setup-python@v4
73
+ uses : actions/setup-python@v5
74
74
with :
75
75
python-version : ${{ matrix.python }}
76
76
- name : Install Python dependencies
@@ -99,19 +99,19 @@ jobs:
99
99
runs-on : ubuntu-latest
100
100
steps :
101
101
- name : Checkout source code
102
- uses : actions/checkout@v3
102
+ uses : actions/checkout@v4
103
103
with :
104
104
fetch-depth : 0
105
105
- name : Set up Python
106
- uses : actions/setup-python@v4
106
+ uses : actions/setup-python@v5
107
107
with :
108
108
python-version : " 3.13"
109
109
- name : Install dependencies
110
110
run : python -m pip install tox
111
111
- name : Build docs (via tox)
112
112
run : tox -e docs
113
113
- name : Archive build results
114
- uses : actions/upload-artifact@v3
114
+ uses : actions/upload-artifact@v4
115
115
with :
116
116
name : html-docs-build
117
117
path : docs/_build/html
@@ -126,11 +126,11 @@ jobs:
126
126
COMPOSE_FILE : ${{ matrix.db == 'mysql' && 'docker-compose.yml' || (matrix.db == 'postgres' && 'docker-compose-pg.yml') || 'docker-compose-sqlite3.yml' }}
127
127
steps :
128
128
- name : Checkout source code
129
- uses : actions/checkout@v3
129
+ uses : actions/checkout@v4
130
130
with :
131
131
fetch-depth : 0
132
132
- name : Set up Python
133
- uses : actions/setup-python@v4
133
+ uses : actions/setup-python@v5
134
134
with :
135
135
python-version : " 3.13"
136
136
- name : Build docker-compose service
0 commit comments