Skip to content

Commit b5acb87

Browse files
committed
GitHub action updates
1 parent 83dbca2 commit b5acb87

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
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:

.github/workflows/docker-github.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
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...
@@ -25,7 +25,7 @@ jobs:
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 }}
@@ -36,7 +36,7 @@ jobs:
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 }}
@@ -49,9 +49,9 @@ jobs:
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 }}

.github/workflows/docker.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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 }}

.github/workflows/master_huelightdj.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
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

0 commit comments

Comments
 (0)