File tree Expand file tree Collapse file tree 4 files changed +12
-12
lines changed
Expand file tree Collapse file tree 4 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 88 runs-on : ubuntu-latest
99
1010 steps :
11- - uses : actions/checkout@v3
11+ - uses : actions/checkout@v4
1212 - name : Setup .NET Core
1313 uses : actions/setup-dotnet@v4
1414 with :
Original file line number Diff line number Diff line change 1616
1717 steps :
1818 - name : checkout code
19- uses : actions/checkout@v3
19+ uses : actions/checkout@v4
2020
2121 # this is a little bit of "dark magick"...
2222 # Github Registry seems to hate Usernames Containing UpperCase...
2525 # I'm not sure it's the _best_ set of Docker Tags to use.
2626 - name : Docker meta
2727 id : meta
28- uses : docker/metadata-action@v4
28+ uses : docker/metadata-action@v5
2929 with :
3030 images : |
3131 ghcr.io/${{ github.repository_owner }}/${{ github.repository }}${{ env.TAG }}
3636 type=raw,value=latest
3737
3838 - name : Log in to ghcr
39- uses : docker/login-action@v2
39+ uses : docker/login-action@v3
4040 with :
4141 registry : ghcr.io
4242 username : ${{ github.repository_owner }}
4949 run : echo "TAG=$(git describe --tags)" >> $GITHUB_ENV
5050
5151 - name : Build & Push
52- uses : docker/build-push-action@v4
52+ uses : docker/build-push-action@v6
5353 with :
5454 context : ./
55- file : ./Dockerfile
55+ file : ./HueEntertainmentPro/Server/ Dockerfile
5656 push : true
5757 tags : ${{ steps.meta.outputs.tags }}
Original file line number Diff line number Diff line change @@ -19,24 +19,24 @@ jobs:
1919 runs-on : ubuntu-latest
2020 steps :
2121 - name : Check out the repo
22- uses : actions/checkout@v3
22+ uses : actions/checkout@v4
2323
2424 - name : Log in to Docker Hub
25- uses : docker/login-action@v2
25+ uses : docker/login-action@v3
2626 with :
2727 username : ${{ secrets.DOCKERHUB_USERNAME }}
2828 password : ${{ secrets.DOCKERHUB_TOKEN }}
2929
3030 - name : Extract metadata (tags, labels) for Docker
3131 id : meta
32- uses : docker/metadata-action@v4
32+ uses : docker/metadata-action@v5
3333 with :
3434 images : michielpost/huelightdj
3535
3636 - name : Build and push Docker image
37- uses : docker/build-push-action@v4
37+ uses : docker/build-push-action@v6
3838 with :
39- context : .
39+ context : ./HueEntertainmentPro/Server/
4040 push : true
4141 tags : michielpost/huelightdj:latest,${{ steps.meta.outputs.tags }}
4242 labels : ${{ steps.meta.outputs.labels }}
Original file line number Diff line number Diff line change 1414 runs-on : ubuntu-latest
1515
1616 steps :
17- - uses : actions/checkout@v3
17+ - uses : actions/checkout@v4
1818
1919 - name : Set up .NET Core
2020 uses : actions/setup-dotnet@v4
You can’t perform that action at this time.
0 commit comments