52
52
53
53
- name : Upload Results
54
54
if : ${{ matrix.python-version == env.LATEST_PY_VERSION }}
55
- uses : codecov/codecov-action@v1
55
+ uses : codecov/codecov-action@v4
56
56
with :
57
57
file : ./coverage.xml
58
58
flags : unittests
@@ -145,13 +145,13 @@ jobs:
145
145
uses : actions/checkout@v4
146
146
147
147
- name : Set up QEMU
148
- uses : docker/setup-qemu-action@v1
148
+ uses : docker/setup-qemu-action@v3
149
149
150
150
- name : Set up Docker Buildx
151
- uses : docker/setup-buildx-action@v1
151
+ uses : docker/setup-buildx-action@v3
152
152
153
153
- name : Login to Github
154
- uses : docker/login-action@v1
154
+ uses : docker/login-action@v3
155
155
with :
156
156
registry : ghcr.io
157
157
username : ${{ github.actor }}
@@ -174,7 +174,7 @@ jobs:
174
174
# Push `latest` when commiting to main
175
175
- name : Build and push
176
176
if : github.ref == 'refs/heads/main'
177
- uses : docker/build-push-action@v2
177
+ uses : docker/build-push-action@v5
178
178
with :
179
179
platforms : linux/amd64,linux/arm64
180
180
context : .
@@ -186,7 +186,7 @@ jobs:
186
186
# Push `{VERSION}` when pushing a new tag
187
187
- name : Build and push
188
188
if : startsWith(github.event.ref, 'refs/tags') || github.event_name == 'release'
189
- uses : docker/build-push-action@v2
189
+ uses : docker/build-push-action@v5
190
190
with :
191
191
platforms : linux/amd64,linux/arm64
192
192
context : .
0 commit comments