Skip to content

Commit 83d83ed

Browse files
committed
Updating CI
1 parent e1d2413 commit 83d83ed

2 files changed

Lines changed: 8 additions & 14 deletions

File tree

.github/workflows/compilation.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,23 +19,19 @@ jobs:
1919
shell: ${{ matrix.os[1] }} {0}
2020

2121
steps:
22-
- uses: actions/checkout@v3
23-
with:
24-
fetch-depth: 0
22+
- uses: actions/checkout@v4
2523

2624
- name: Install Ubuntu packages
2725
if: matrix.os[0] == 'ubuntu-latest'
2826
run: |
2927
sudo apt-get update
3028
sudo apt-get -y install texinfo bison flex gettext libgmp3-dev libmpfr-dev libmpc-dev
31-
echo "MSYSTEM=x64" >> $GITHUB_ENV
3229
3330
- name: Install macOS packages
3431
if: matrix.os[0] == 'macos-latest'
3532
run: |
3633
brew update
3734
brew install texinfo bison flex gnu-sed gsl gmp mpfr libmpc
38-
echo "MSYSTEM=x64" >> $GITHUB_ENV
3935
4036
- name: Install MSYS2 packages
4137
if: matrix.os[0] == 'windows-latest'
@@ -46,10 +42,8 @@ jobs:
4642
base-devel git make texinfo flex bison patch binutils mingw-w64-i686-gcc mpc-devel tar
4743
mingw-w64-i686-cmake mingw-w64-i686-make mingw-w64-i686-libogg
4844
update: true
49-
shell: msys2 {0}
5045

5146
- name: Runs all the stages in the shell
52-
continue-on-error: false
5347
run: |
5448
export PS2DEV=$PWD/ps2dev
5549
export PATH="/usr/local/opt/gnu-sed/libexec/gnubin:$PATH"

.github/workflows/docker.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
DISPATCH_TOKEN: ${{ secrets.DISPATCH_TOKEN }}
1818

1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v4
2121

2222
- name: Extract DOCKER_TAG using tag name
2323
if: startsWith(github.ref, 'refs/tags/')
@@ -30,20 +30,20 @@ jobs:
3030
echo "DOCKER_TAG=latest" >> $GITHUB_ENV
3131
3232
- name: Set up QEMU
33-
uses: docker/setup-qemu-action@v1
33+
uses: docker/setup-qemu-action@v3
3434

3535
- name: Set up Docker Buildx
36-
uses: docker/setup-buildx-action@v1
36+
uses: docker/setup-buildx-action@v3
3737

3838
- name: Login to DockerHub
39-
uses: docker/login-action@v1
39+
uses: docker/login-action@v3
4040
if: env.DOCKER_USERNAME != null
4141
with:
4242
username: ${{ secrets.DOCKER_USERNAME }}
4343
password: ${{ secrets.DOCKER_PASSWORD }}
4444

4545
- name: Login to Github Container Registry
46-
uses: docker/login-action@v1
46+
uses: docker/login-action@v3
4747
with:
4848
registry: ghcr.io
4949
username: ${{ github.actor }}
@@ -60,7 +60,7 @@ jobs:
6060
echo "DOCKER_TAG_LIST=ghcr.io/${{ github.repository }}:${{ env.DOCKER_TAG }}" >> $GITHUB_ENV
6161
6262
- name: Build and Push to container registry
63-
uses: docker/build-push-action@v2
63+
uses: docker/build-push-action@v5
6464
with:
6565
push: true
6666
tags: ${{ env.DOCKER_TAG_LIST }}
@@ -71,7 +71,7 @@ jobs:
7171
echo "NEW_DISPATCH_ACTION=$DISPATCH_ACTION" >> $GITHUB_ENV
7272
7373
- name: Repository Dispatch
74-
uses: peter-evans/repository-dispatch@v1
74+
uses: peter-evans/repository-dispatch@v3
7575
if: env.DISPATCH_TOKEN != null
7676
with:
7777
repository: ${{ github.repository_owner }}/ps2toolchain

0 commit comments

Comments
 (0)