From ea59e95c56a8394ed15d94071cf086abebb3e8ba Mon Sep 17 00:00:00 2001 From: Maschell Date: Thu, 25 Apr 2024 14:11:30 +0200 Subject: [PATCH] Update github actions --- .github/workflows/pr.yml | 4 ++-- .github/workflows/push_image.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 2f81c77..7548b4b 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -6,7 +6,7 @@ jobs: clang-format: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: clang-format run: | docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./source ./include @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-22.04 needs: clang-format steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: build lib run: | docker build . -f Dockerfile.buildlocal -t builder diff --git a/.github/workflows/push_image.yml b/.github/workflows/push_image.yml index 30dc9a6..2ed99d6 100644 --- a/.github/workflows/push_image.yml +++ b/.github/workflows/push_image.yml @@ -13,7 +13,7 @@ jobs: clang-format-lib: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: clang-format run: | docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./include ./source @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-22.04 needs: clang-format-lib steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: build binary run: | docker build . -f Dockerfile.buildlocal -t builder @@ -35,7 +35,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Extract Docker metadata id: meta uses: docker/metadata-action@v4