diff --git a/.github/workflows/push_image.yml b/.github/workflows/push_image.yml index 2202a67..e775040 100644 --- a/.github/workflows/push_image.yml +++ b/.github/workflows/push_image.yml @@ -12,7 +12,7 @@ jobs: clang-format-lib: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: clang-format run: | docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./include ./libraries @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-22.04 needs: clang-format-lib steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: build binary run: | docker build . -f Dockerfile.buildlocal -t builder @@ -28,7 +28,7 @@ jobs: clang-format-examples: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: clang-format run: | docker run --rm -v ${PWD}:/src ghcr.io/wiiu-env/clang-format:13.0.0-2 -r ./plugins/example_plugin/src @@ -36,7 +36,7 @@ jobs: runs-on: ubuntu-22.04 needs: clang-format-examples steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: build binary run: | docker build . -f Dockerfile.buildexamples -t builder