2929 packages : write
3030 steps :
3131 - name : Checkout repository
32- uses : actions/checkout@v5
32+ uses : actions/checkout@v6
3333 # https://github.com/actions/setup-python
3434 - name : Set up Python
3535 uses : actions/setup-python@v6
5656 working-directory : docs
5757 # Save the generated documentation as an artifact in Github
5858 - name : Upload documentation
59- uses : actions/upload-artifact@v4
59+ uses : actions/upload-artifact@v6
6060 with :
6161 name : python-doc-package
6262 path : docs/_build/
7171
7272 steps :
7373 - name : Checkout repository
74- uses : actions/checkout@v5
74+ uses : actions/checkout@v6
7575 # https://github.com/actions/setup-python
7676 - name : Set up Python
7777 uses : actions/setup-python@v6
8787 - name : Build Python package
8888 run : python -m build
8989 - name : Upload Python package
90- uses : actions/upload-artifact@v4
90+ uses : actions/upload-artifact@v6
9191 with :
9292 name : python-package
9393 path : dist/
@@ -109,14 +109,14 @@ jobs:
109109
110110 steps :
111111 - name : Checkout repository
112- uses : actions/checkout@v5
112+ uses : actions/checkout@v6
113113 - name : Download Python package
114- uses : actions/download-artifact@v5 .0.0
114+ uses : actions/download-artifact@v7 .0.0
115115 with :
116116 name : python-package
117117 path : dist/
118118 - name : Setup Docker buildx
119- uses : docker/setup-buildx-action@v3.11.1
119+ uses : docker/setup-buildx-action@v3.12.0
120120 # Login against a Docker registry (only with a tag or push on `dev` branch)
121121 # https://github.com/docker/login-action
122122 - name : Log into Docker Hub
@@ -129,7 +129,7 @@ jobs:
129129 # https://github.com/docker/metadata-action
130130 - name : Extract Docker metadata
131131 id : meta
132- uses : docker/metadata-action@v5.8 .0
132+ uses : docker/metadata-action@v5.10 .0
133133 with :
134134 images : ${{ env.IMAGE_NAME }}
135135 # Customize the generation of Docker `latest` tag
0 commit comments