Skip to content

Commit

Permalink
Merge pull request #28 from pspdev/resolve-ci-warnings
Browse files Browse the repository at this point in the history
Resolve CI warnings
  • Loading branch information
diamant3 authored Feb 4, 2024
2 parents 6b6bf2d + 3df670b commit 5137d52
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/compilation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
shell: ${{ matrix.os[1] }} {0}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install on Ubuntu
if: matrix.os[0] == 'ubuntu-latest'
Expand All @@ -39,7 +39,6 @@ jobs:
msystem: MINGW32
install: base-devel git make texinfo flex bison patch binutils mingw-w64-i686-gcc mingw-w64-i686-dlfcn mingw-w64-i686-mpc
update: true
shell: msys2 {0}

- name: Runs all stages
run: |
Expand All @@ -56,7 +55,7 @@ jobs:
run: |
tar -zcvf pspdev.tar.gz pspdev
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: pspdev-${{ steps.slug.outputs.sha8 }}-${{ matrix.os[0] }}
path: pspdev.tar.gz
Expand All @@ -68,7 +67,7 @@ jobs:
matrix:
os: [[ubuntu, bash], [fedora, bash]]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install dependencies Ubuntu
if: matrix.os[0] == 'ubuntu'
Expand Down Expand Up @@ -97,7 +96,7 @@ jobs:
run: |
tar -zcvf pspdev.tar.gz pspdev
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: pspdev-${{ steps.slug.outputs.sha8 }}-${{ matrix.os[0] }}
path: pspdev.tar.gz
10 changes: 5 additions & 5 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Extract DOCKER_TAG using tag name
if: startsWith(github.ref, 'refs/tags/')
Expand All @@ -28,19 +28,19 @@ jobs:
echo "DOCKER_TAG=latest" >> $GITHUB_ENV
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Login to Github registry
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
registry: ghcr.io

- uses: docker/build-push-action@v4
- uses: docker/build-push-action@v5
with:
push: true
tags: ghcr.io/${{ github.repository }}:${{ env.DOCKER_TAG }}
Expand Down

0 comments on commit 5137d52

Please sign in to comment.