Skip to content

Commit

Permalink
Synchronize changes from 1.6 master branch [ci skip]
Browse files Browse the repository at this point in the history
7c103c7 Upgrade GitHub Actions (Fixes #3308)
  • Loading branch information
github-actions[bot] committed Feb 4, 2024
2 parents 03b8a29 + 7c103c7 commit 500303a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yaml
Expand Up @@ -11,9 +11,9 @@ jobs:
name: windows-${{ matrix.platform }}
runs-on: windows-2022
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/cache@v3
- uses: actions/cache@v4
id: cache-dxfiles
with:
path: utils/DXFiles
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Create build artifacts
run: utils\premake5 compose_files

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: InstallFiles
path: InstallFiles/
Expand All @@ -54,7 +54,7 @@ jobs:
name: macOS
runs-on: macOS-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

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

- name: Run Build
run: ./linux-build.sh --arch=${{ matrix.architecture }}
8 changes: 4 additions & 4 deletions .github/workflows/dockerimage.yaml
Expand Up @@ -34,14 +34,14 @@ jobs:
dockerfile: Dockerfile.osx-arm64
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: docker/setup-buildx-action@v2
- uses: docker/login-action@v2
- uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.CI_PAT }}
- uses: docker/build-push-action@v3
- uses: docker/build-push-action@v5
with:
push: true
file: ./${{ matrix.dockerfile }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rebuild-pots.yaml
Expand Up @@ -6,7 +6,7 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- uses: conda-incubator/setup-miniconda@v2
Expand All @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.POT_CI_PAT }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync-master-to-maetro.yaml
Expand Up @@ -9,7 +9,7 @@ jobs:
sync-master-to-maetro:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.SYNC_CI_PAT }}
Expand Down

0 comments on commit 500303a

Please sign in to comment.