File tree 8 files changed +19
-19
lines changed
8 files changed +19
-19
lines changed Original file line number Diff line number Diff line change 15
15
runs-on : ubuntu-latest
16
16
steps :
17
17
- name : Checkout
18
- uses : actions/checkout@v3
18
+ uses : actions/checkout@v4
19
19
- name : Setup Node
20
- uses : actions/setup-node@v3
20
+ uses : actions/setup-node@v4
21
21
with :
22
22
node-version : ' 16'
23
23
cache : ' npm'
Original file line number Diff line number Diff line change 18
18
username : ${{ secrets.DOCKERHUB_USERNAME }}
19
19
password : ${{ secrets.DOCKERHUB_TOKEN }}
20
20
- name : Checkout
21
- uses : actions/checkout@v3
21
+ uses : actions/checkout@v4
22
22
- name : Build And Push
23
23
uses : docker/build-push-action@v4
24
24
with :
Original file line number Diff line number Diff line change 9
9
runs-on : ubuntu-latest
10
10
steps :
11
11
- name : Setup QEMU
12
- uses : docker/setup-qemu-action@v2
12
+ uses : docker/setup-qemu-action@v3
13
13
- name : Setup Docker Buildx
14
- uses : docker/setup-buildx-action@v2
14
+ uses : docker/setup-buildx-action@v3
15
15
- name : Login To DockerHub
16
- uses : docker/login-action@v2
16
+ uses : docker/login-action@v3
17
17
with :
18
18
username : ${{ secrets.DOCKERHUB_USERNAME }}
19
19
password : ${{ secrets.DOCKERHUB_TOKEN }}
20
20
- name : Checkout
21
- uses : actions/checkout@v3
21
+ uses : actions/checkout@v4
22
22
- name : Build And Push
23
- uses : docker/build-push-action@v4
23
+ uses : docker/build-push-action@v6
24
24
with :
25
25
context : ./src/game-service/Game.Application
26
26
file : ./src/game-service/Game.Application/Dockerfile
Original file line number Diff line number Diff line change 15
15
runs-on : ubuntu-latest
16
16
steps :
17
17
- name : Checkout
18
- uses : actions/checkout@v3
18
+ uses : actions/checkout@v4
19
19
- name : Setup .NET
20
- uses : actions/setup-dotnet@v3
20
+ uses : actions/setup-dotnet@v4
21
21
with :
22
22
dotnet-version : " 5.0.x"
23
23
- name : Game Application Build
Original file line number Diff line number Diff line change 15
15
runs-on : ubuntu-latest
16
16
steps :
17
17
- name : Checkout
18
- uses : actions/checkout@v3
18
+ uses : actions/checkout@v4
19
19
- name : Setup .NET
20
- uses : actions/setup-dotnet@v3
20
+ uses : actions/setup-dotnet@v4
21
21
with :
22
22
dotnet-version : " 5.0.x"
23
23
- name : Build
Original file line number Diff line number Diff line change @@ -11,13 +11,13 @@ jobs:
11
11
runs-on : ubuntu-latest
12
12
steps :
13
13
- name : Checkout
14
- uses : actions/checkout@v3
14
+ uses : actions/checkout@v4
15
15
- name : Setup kustomize
16
16
uses : imranismail/setup-kustomize@v2
17
17
- name : Generate release manifests
18
18
run : kustomize build ./kustomize > ./release/kubernetes-manifests.yaml
19
19
- name : Create pull request
20
- uses : peter-evans/create-pull-request@v4
20
+ uses : peter-evans/create-pull-request@v7
21
21
with :
22
22
token : ${{ github.token }}
23
23
commit-message : " chore: update kubernetes manifests"
Original file line number Diff line number Diff line change 12
12
runs-on : ubuntu-latest
13
13
steps :
14
14
- name : Checkout
15
- uses : actions/checkout@v3
15
+ uses : actions/checkout@v4
16
16
- name : Update Game Data
17
17
run : |
18
18
# Set Download Game Files Variables
38
38
mv ${BUILD_PATH} ${FILES_PATH}
39
39
rm ${ARTIFACT_NAME}
40
40
rm -r ${PLATFORM}
41
- - uses : EndBug/add-and-commit@v8
41
+ - uses : EndBug/add-and-commit@v9
42
42
with :
43
43
message : " build(frontend): update game files"
44
44
default_author : github_actions
Original file line number Diff line number Diff line change @@ -39,10 +39,10 @@ jobs:
39
39
targetPlatform :
40
40
- WebGL
41
41
steps :
42
- - uses : actions/checkout@v3
42
+ - uses : actions/checkout@v4
43
43
with :
44
44
lfs : true
45
- - uses : actions/cache@v3
45
+ - uses : actions/cache@v4
46
46
with :
47
47
path : ${{ matrix.projectPath }}/Library
48
48
key : Library-${{ matrix.projectPath }}-${{ matrix.targetPlatform }}
54
54
projectPath : ${{ env.PROJECT_PATH }}
55
55
unityVersion : ${{ env.UNITY_VERSION }}
56
56
targetPlatform : ${{ matrix.targetPlatform }}
57
- - uses : actions/upload-artifact@v2
57
+ - uses : actions/upload-artifact@v4
58
58
with :
59
59
name : Build
60
60
path : build
You can’t perform that action at this time.
0 commit comments