5353 fi
5454
5555 - name : Checkout the repository
56- uses : actions/checkout@v3
56+ uses : actions/checkout@v4
5757 - run : |
5858 rustup toolchain install nightly --profile minimal
5959 rustup default nightly
@@ -102,7 +102,7 @@ jobs:
102102
103103 - name : Login to DockerHub (Linux only)
104104 if : matrix.build == 'linux-x86_64' || matrix.build == 'linux-aarch_64'
105- uses : docker/login-action@v2
105+ uses : docker/login-action@v3
106106 with :
107107 username : ${{ secrets.DOCKERHUB_USERNAME }}
108108 password : ${{ secrets.DOCKERHUB_TOKEN }}
@@ -117,7 +117,7 @@ jobs:
117117 if : matrix.build == 'linux-x86_64' || matrix.build == 'linux-aarch_64'
118118 id : meta
119119 # https://github.com/docker/metadata-action
120- uses : docker/metadata-action@v4
120+ uses : docker/metadata-action@v5
121121 with :
122122 images : |
123123 splitgraph/seafowl
@@ -131,15 +131,15 @@ jobs:
131131
132132 - name : Build and push Docker image (Linux only)
133133 if : matrix.build == 'linux-x86_64' || matrix.build == 'linux-aarch_64'
134- uses : docker/build-push-action@v4
134+ uses : docker/build-push-action@v5
135135 with :
136136 context : .
137137 push : true
138138 tags : ${{ steps.meta.outputs.tags }}
139139 labels : ${{ steps.meta.outputs.labels }}
140140
141141 - name : Upload binaries as artifacts
142- uses : actions/upload-artifact@v3
142+ uses : actions/upload-artifact@v4
143143 with :
144144 name : ${{ env.ARTIFACT }}
145145 path : ${{ env.SOURCE }}
@@ -160,7 +160,7 @@ jobs:
160160
161161 # Checkout required to access the release-notes.py script
162162 - name : Checkout the repository
163- uses : actions/checkout@v3
163+ uses : actions/checkout@v4
164164 - name : Generate release notes
165165 run : |
166166 ./.github/workflows/release-notes.py --tag ${{ env.RELEASE_VERSION }} --output notes-${{ env.RELEASE_VERSION }}.md
0 commit comments