99 runs-on : ubuntu-latest
1010 steps :
1111 - name : Checkout source code
12- uses : actions/checkout@v3
12+ uses : actions/checkout@v4
1313 - name : Set up Python
14- uses : actions/setup-python@v4
14+ uses : actions/setup-python@v5
1515 with :
1616 python-version : " 3.13"
1717 - name : Set up Go
18- uses : actions/setup-go@v4
18+ uses : actions/setup-go@v5
1919 with :
2020 go-version : " 1.21"
2121 - name : Install dependencies
6868 --health-retries 5
6969 steps :
7070 - name : Checkout source code
71- uses : actions/checkout@v3
71+ uses : actions/checkout@v4
7272 - name : Set up Python ${{ matrix.python }}
73- uses : actions/setup-python@v4
73+ uses : actions/setup-python@v5
7474 with :
7575 python-version : ${{ matrix.python }}
7676 - name : Install Python dependencies
@@ -99,19 +99,19 @@ jobs:
9999 runs-on : ubuntu-latest
100100 steps :
101101 - name : Checkout source code
102- uses : actions/checkout@v3
102+ uses : actions/checkout@v4
103103 with :
104104 fetch-depth : 0
105105 - name : Set up Python
106- uses : actions/setup-python@v4
106+ uses : actions/setup-python@v5
107107 with :
108108 python-version : " 3.13"
109109 - name : Install dependencies
110110 run : python -m pip install tox
111111 - name : Build docs (via tox)
112112 run : tox -e docs
113113 - name : Archive build results
114- uses : actions/upload-artifact@v3
114+ uses : actions/upload-artifact@v4
115115 with :
116116 name : html-docs-build
117117 path : docs/_build/html
@@ -126,11 +126,11 @@ jobs:
126126 COMPOSE_FILE : ${{ matrix.db == 'mysql' && 'docker-compose.yml' || (matrix.db == 'postgres' && 'docker-compose-pg.yml') || 'docker-compose-sqlite3.yml' }}
127127 steps :
128128 - name : Checkout source code
129- uses : actions/checkout@v3
129+ uses : actions/checkout@v4
130130 with :
131131 fetch-depth : 0
132132 - name : Set up Python
133- uses : actions/setup-python@v4
133+ uses : actions/setup-python@v5
134134 with :
135135 python-version : " 3.13"
136136 - name : Build docker-compose service
0 commit comments