From c243762bc7c654a3b1a59bbf0227a711b238f6e5 Mon Sep 17 00:00:00 2001 From: Francisco Javier Trujillo Mata Date: Wed, 27 Mar 2024 21:15:58 +0100 Subject: [PATCH] Update CI --- .github/workflows/compilation.yml | 2 +- .github/workflows/docker.yml | 12 ++++++------ build-cmakelibs.sh | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/compilation.yml b/.github/workflows/compilation.yml index 06a3fe47..92838528 100644 --- a/.github/workflows/compilation.yml +++ b/.github/workflows/compilation.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest container: ps2dev/ps2sdk:latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install dependencies run: | diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index a49d291d..8b982457 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -18,7 +18,7 @@ jobs: DISPATCH_TOKEN: ${{ secrets.DISPATCH_TOKEN }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Extract DOCKER_TAG using tag name if: startsWith(github.ref, 'refs/tags/') @@ -32,13 +32,13 @@ jobs: - name: Login to DockerHub if: env.DOCKER_USERNAME != null - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - name: Login to Github Container Registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ghcr.io username: ${{ github.actor }} @@ -55,7 +55,7 @@ jobs: echo "DOCKER_TAG_LIST=ghcr.io/${{ github.repository }}:${{ env.DOCKER_TAG }}" >> $GITHUB_ENV - name: Build and Push to container registry - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v5 with: push: true tags: ${{ env.DOCKER_TAG_LIST }} @@ -68,7 +68,7 @@ jobs: echo "NEW_DISPATCH_ACTION=$DISPATCH_ACTION" >> $GITHUB_ENV - name: Repository Dispatch to ps2dev - uses: peter-evans/repository-dispatch@v2 + uses: peter-evans/repository-dispatch@v3 if: env.DISPATCH_TOKEN != null with: repository: ${{ github.repository_owner }}/ps2dev @@ -77,7 +77,7 @@ jobs: client-payload: '{"ref": "${{ github.ref }}"}' - name: Repository Dispatch to gsKit - uses: peter-evans/repository-dispatch@v2 + uses: peter-evans/repository-dispatch@v3 if: env.DISPATCH_TOKEN != null with: repository: ${{ github.repository_owner }}/gsKit diff --git a/build-cmakelibs.sh b/build-cmakelibs.sh index 8aec43c1..fe4b008c 100755 --- a/build-cmakelibs.sh +++ b/build-cmakelibs.sh @@ -77,7 +77,7 @@ git clone https://github.com/sezero/mikmod.git mikmod-mikmod || { exit 1; } git clone --depth 1 -b feature/cmake https://github.com/mcmtroffaes/theora.git || { exit 1; } # SDL requires to have gsKit -git clone --depth 1 -b v1.3.6 https://github.com/ps2dev/gsKit || { exit 1; } +git clone --depth 1 -b v1.3.7 https://github.com/ps2dev/gsKit || { exit 1; } # We need to clone the whole repo and point to the specific hash for now, # till a new version is released after this commit