Skip to content

Commit

Permalink
Try to fix issue with indent.
Browse files Browse the repository at this point in the history
  • Loading branch information
luca-heltai committed Apr 30, 2023
1 parent 2cbc8fd commit 7fc557a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
Expand All @@ -21,7 +21,7 @@ jobs:
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Build and push Docker image of master
uses: docker/build-push-action@v2
uses: docker/build-push-action@v3
with:
context: ./docker/
file: ./docker/Dockerfile.fsi-suite
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/indentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,5 @@ jobs:
fetch-depth: 100
- name: Check indentation
run: |
git config --global --add safe.directory "$GITHUB_WORKSPACE"
./scripts/check_indentation.sh
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
options: --user root

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Build debug
run: |
rm -rf build_linux_debug
Expand All @@ -38,7 +38,7 @@ jobs:
options: --user root

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Build release
run: |
rm -rf build_linux_release
Expand Down

0 comments on commit 7fc557a

Please sign in to comment.