Skip to content

Commit cc296bb

Browse files
committed
Updating CI
1 parent f3192ca commit cc296bb

File tree

2 files changed

+8
-11
lines changed

2 files changed

+8
-11
lines changed

.github/workflows/compilation.yml

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

2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323
with:
2424
fetch-depth: 0
2525

@@ -28,14 +28,12 @@ jobs:
2828
run: |
2929
sudo apt-get update
3030
sudo apt-get -y install texinfo bison flex gettext libgmp3-dev libmpfr-dev libmpc-dev
31-
echo "MSYSTEM=x64" >> $GITHUB_ENV
3231
3332
- name: Install macOS packages
3433
if: matrix.os[0] == 'macos-latest'
3534
run: |
3635
brew update
3736
brew install texinfo bison flex gnu-sed gsl gmp mpfr libmpc
38-
echo "MSYSTEM=x64" >> $GITHUB_ENV
3937
4038
- name: Install MSYS2 packages
4139
if: matrix.os[0] == 'windows-latest'
@@ -46,7 +44,6 @@ jobs:
4644
base-devel git make texinfo flex bison patch binutils mingw-w64-i686-gcc mpc-devel tar
4745
mingw-w64-i686-cmake mingw-w64-i686-make mingw-w64-i686-libogg
4846
update: true
49-
shell: msys2 {0}
5047

5148
- name: Runs all the stages in the shell
5249
continue-on-error: false

.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)