Skip to content

Commit 9b9d043

Browse files
committed
ci: upgrade CI workflows
1 parent 000a438 commit 9b9d043

8 files changed

+19
-19
lines changed

.github/workflows/frontend-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919
- name: Setup Node
20-
uses: actions/setup-node@v3
20+
uses: actions/setup-node@v4
2121
with:
2222
node-version: '16'
2323
cache: 'npm'

.github/workflows/frontend-docker-build-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
username: ${{ secrets.DOCKERHUB_USERNAME }}
1919
password: ${{ secrets.DOCKERHUB_TOKEN }}
2020
- name: Checkout
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
2222
- name: Build And Push
2323
uses: docker/build-push-action@v4
2424
with:

.github/workflows/game-docker-build-push.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Setup QEMU
12-
uses: docker/setup-qemu-action@v2
12+
uses: docker/setup-qemu-action@v3
1313
- name: Setup Docker Buildx
14-
uses: docker/setup-buildx-action@v2
14+
uses: docker/setup-buildx-action@v3
1515
- name: Login To DockerHub
16-
uses: docker/login-action@v2
16+
uses: docker/login-action@v3
1717
with:
1818
username: ${{ secrets.DOCKERHUB_USERNAME }}
1919
password: ${{ secrets.DOCKERHUB_TOKEN }}
2020
- name: Checkout
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
2222
- name: Build And Push
23-
uses: docker/build-push-action@v4
23+
uses: docker/build-push-action@v6
2424
with:
2525
context: ./src/game-service/Game.Application
2626
file: ./src/game-service/Game.Application/Dockerfile

.github/workflows/game-service-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919
- name: Setup .NET
20-
uses: actions/setup-dotnet@v3
20+
uses: actions/setup-dotnet@v4
2121
with:
2222
dotnet-version: "5.0.x"
2323
- name: Game Application Build

.github/workflows/interest-management-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919
- name: Setup .NET
20-
uses: actions/setup-dotnet@v3
20+
uses: actions/setup-dotnet@v4
2121
with:
2222
dotnet-version: "5.0.x"
2323
- name: Build

.github/workflows/release-k8s-manifests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515
- name: Setup kustomize
1616
uses: imranismail/setup-kustomize@v2
1717
- name: Generate release manifests
1818
run: kustomize build ./kustomize > ./release/kubernetes-manifests.yaml
1919
- name: Create pull request
20-
uses: peter-evans/create-pull-request@v4
20+
uses: peter-evans/create-pull-request@v7
2121
with:
2222
token: ${{ github.token }}
2323
commit-message: "chore: update kubernetes manifests"

.github/workflows/unity-build-updater.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
1616
- name: Update Game Data
1717
run: |
1818
# Set Download Game Files Variables
@@ -38,7 +38,7 @@ jobs:
3838
mv ${BUILD_PATH} ${FILES_PATH}
3939
rm ${ARTIFACT_NAME}
4040
rm -r ${PLATFORM}
41-
- uses: EndBug/add-and-commit@v8
41+
- uses: EndBug/add-and-commit@v9
4242
with:
4343
message: "build(frontend): update game files"
4444
default_author: github_actions

.github/workflows/unity-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ jobs:
3939
targetPlatform:
4040
- WebGL
4141
steps:
42-
- uses: actions/checkout@v3
42+
- uses: actions/checkout@v4
4343
with:
4444
lfs: true
45-
- uses: actions/cache@v3
45+
- uses: actions/cache@v4
4646
with:
4747
path: ${{ matrix.projectPath }}/Library
4848
key: Library-${{ matrix.projectPath }}-${{ matrix.targetPlatform }}
@@ -54,7 +54,7 @@ jobs:
5454
projectPath: ${{ env.PROJECT_PATH }}
5555
unityVersion: ${{ env.UNITY_VERSION }}
5656
targetPlatform: ${{ matrix.targetPlatform }}
57-
- uses: actions/upload-artifact@v2
57+
- uses: actions/upload-artifact@v4
5858
with:
5959
name: Build
6060
path: build

0 commit comments

Comments
 (0)