@@ -22,31 +22,33 @@ jobs:
2222
2323 steps :
2424 - name : Checkout repository
25- uses : actions/checkout@v3
25+ uses : actions/checkout@v4
2626
2727 - name : Log in to the Github Container Registry
28- uses : docker/login-action@v2
28+ uses : docker/login-action@v3
2929 with :
3030 registry : ${{ env.REGISTRY }}
3131 username : ${{ github.actor }}
3232 password : ${{ secrets.GITHUB_TOKEN }}
3333
3434 - name : Extract metadata (tags, labels) for docker image
3535 id : meta
36- uses : docker/metadata-action@v4
36+ uses : docker/metadata-action@v5
3737 with :
3838 images : |
3939 ${{ env.REGISTRY }}/tum-gis/ckan-${{ matrix.context }}
4040 tags : |
4141 type=semver,pattern={{version}}
4242 type=semver,pattern={{major}}.{{minor}}
43+ type=semver,pattern={{major}}
4344 labels : |
4445 maintainer=Chair of Geoinformatics, Technical University of Munich (TUM)
4546 org.opencontainers.image.vendor=Chair of Geoinformatics, Technical University of Munich (TUM)
4647 org.opencontainers.image.title=ckan-sddi-docker
48+ org.opencontainers.image.documentation=https://github.com/tum-gis/ckan-docker
4749
4850 - name : Build and publish ${{ env.REGISTRY }}/tum-gis/ckan-${{ matrix.context }}
49- uses : docker/build-push-action@v4
51+ uses : docker/build-push-action@v6
5052 with :
5153 context : ${{ matrix.context }}
5254 push : true
5759
5860 - name : Extract metadata (tags, labels) for debug docker image
5961 id : meta-debug
60- uses : docker/metadata-action@v4
62+ uses : docker/metadata-action@v5
6163 with :
6264 flavor :
6365 latest=true,suffix=-debug,onlatest=true
@@ -66,13 +68,15 @@ jobs:
6668 tags : |
6769 type=semver,pattern={{version}}
6870 type=semver,pattern={{major}}.{{minor}}
71+ type=semver,pattern={{major}}
6972 labels : |
7073 maintainer=Chair of Geoinformatics, Technical University of Munich (TUM)
7174 org.opencontainers.image.vendor=Chair of Geoinformatics, Technical University of Munich (TUM)
72- org.opencontainers.image.title=ckan-sddi-docker
75+ org.opencontainers.image.title=ckan-sddi-docker-debug
76+ org.opencontainers.image.documentation=https://github.com/tum-gis/ckan-docker
7377
7478 - name : Build and publish ${{ env.REGISTRY }}/tum-gis/ckan-${{ matrix.context }}-debug
75- uses : docker/build-push-action@v4
79+ uses : docker/build-push-action@v6
7680 with :
7781 context : ${{ matrix.context }}
7882 file : ${{ matrix.context }}/Dockerfile.debug
0 commit comments