Skip to content

Commit 7c103c7

Browse files
authored
Upgrade GitHub Actions (Fixes #3308)
1 parent 5343870 commit 7c103c7

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/build.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
name: windows-${{ matrix.platform }}
1212
runs-on: windows-2022
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515

16-
- uses: actions/cache@v3
16+
- uses: actions/cache@v4
1717
id: cache-dxfiles
1818
with:
1919
path: utils/DXFiles
@@ -45,7 +45,7 @@ jobs:
4545
- name: Create build artifacts
4646
run: utils\premake5 compose_files
4747

48-
- uses: actions/upload-artifact@v3
48+
- uses: actions/upload-artifact@v4
4949
with:
5050
name: InstallFiles
5151
path: InstallFiles/
@@ -54,7 +54,7 @@ jobs:
5454
name: macOS
5555
runs-on: macOS-latest
5656
steps:
57-
- uses: actions/checkout@v3
57+
- uses: actions/checkout@v4
5858

5959
- name: Install MySQL
6060
run: brew install mysql
@@ -80,7 +80,7 @@ jobs:
8080
container:
8181
image: docker://ghcr.io/multitheftauto/mtasa-blue-build:${{ matrix.image-tag }}
8282
steps:
83-
- uses: actions/checkout@v3
83+
- uses: actions/checkout@v4
8484

8585
- name: Run Build
8686
run: ./linux-build.sh --arch=${{ matrix.architecture }}

.github/workflows/dockerimage.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,14 @@ jobs:
3434
dockerfile: Dockerfile.osx-arm64
3535
runs-on: ubuntu-latest
3636
steps:
37-
- uses: actions/checkout@v3
38-
- uses: docker/setup-buildx-action@v2
39-
- uses: docker/login-action@v2
37+
- uses: actions/checkout@v4
38+
- uses: docker/setup-buildx-action@v3
39+
- uses: docker/login-action@v3
4040
with:
4141
registry: ghcr.io
4242
username: ${{ github.repository_owner }}
4343
password: ${{ secrets.CI_PAT }}
44-
- uses: docker/build-push-action@v3
44+
- uses: docker/build-push-action@v5
4545
with:
4646
push: true
4747
file: ./${{ matrix.dockerfile }}

.github/workflows/rebuild-pots.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
test:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v3
9+
- uses: actions/checkout@v4
1010
with:
1111
ref: ${{ github.head_ref }}
1212
- uses: conda-incubator/setup-miniconda@v2
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
needs: test
2828
steps:
29-
- uses: actions/checkout@v3
29+
- uses: actions/checkout@v4
3030
with:
3131
ref: ${{ github.head_ref }}
3232
token: ${{ secrets.POT_CI_PAT }}

.github/workflows/sync-master-to-maetro.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
sync-master-to-maetro:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
with:
1414
fetch-depth: 0
1515
token: ${{ secrets.SYNC_CI_PAT }}

0 commit comments

Comments
 (0)