From da9c317ead03bba12e5d918855ee4312927aa1a5 Mon Sep 17 00:00:00 2001 From: Odyssey Date: Tue, 18 Oct 2022 15:38:35 +0200 Subject: [PATCH] as I thought Signed-off-by: Odyssey --- .editorconfig | 4 +++ .github/dependabot.yml | 6 ++--- .github/workflows/docker.yml | 48 ++++++++++++++++++------------------ 3 files changed, 31 insertions(+), 27 deletions(-) diff --git a/.editorconfig b/.editorconfig index 5ad5271..b2ec6a0 100644 --- a/.editorconfig +++ b/.editorconfig @@ -3,4 +3,8 @@ root = true [*] end_of_line = lf indent_style = tab +indent_size = 4 + +[*.yml] +indent_style = space indent_size = 4 \ No newline at end of file diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 203052b..ae8cc92 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,6 +1,6 @@ version: 2 updates: - package-ecosystem: "gomod" # See documentation for possible values - directory: "/" # Location of package manifests - schedule: - interval: "daily" \ No newline at end of file + directory: "/" # Location of package manifests + schedule: + interval: "daily" \ No newline at end of file diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index b636179..14d7f81 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -1,29 +1,29 @@ name: Docker on: - push: - branches: - - 'master' + push: + branches: + - 'master' jobs: - docker: - runs-on: ubuntu-latest - steps: - - - name: Set up QEMU - uses: docker/setup-qemu-action@v2 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v2 - - - name: Login to DockerHub - uses: docker/login-action@v2 - with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} - - - name: Build and push - uses: docker/build-push-action@v3 - with: - push: true - tags: realprojectsegfault/segfautils:latest + docker: + runs-on: ubuntu-latest + steps: + - + name: Set up QEMU + uses: docker/setup-qemu-action@v2 + - + name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + - + name: Login to DockerHub + uses: docker/login-action@v2 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - + name: Build and push + uses: docker/build-push-action@v3 + with: + push: true + tags: realprojectsegfault/segfautils:latest