Skip to content

Commit

Permalink
ci: Fixing formatting in ci
Browse files Browse the repository at this point in the history
Signed-off-by: Vincent Boutour <[email protected]>
  • Loading branch information
ViBiOh committed Jun 25, 2022
1 parent 3d20ba4 commit acd00de
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/dependabot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ updates:
directory: /
schedule:
interval: weekly
time: "06:00"
time: '06:00'
day: sunday
commit-message:
prefix: chore
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:
- main

env:
SCRIPTS_NO_INTERACTIVE: "true"
SCRIPTS_NO_INTERACTIVE: 'true'

defaults:
run:
Expand All @@ -38,7 +38,7 @@ jobs:
- name: Setup Golang
uses: actions/setup-go@v3
with:
go-version: "^1.18"
go-version: '^1.18'
- name: golangci-lint
uses: golangci/golangci-lint-action@v2
- name: Build
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
- name: Setup Golang
uses: actions/setup-go@v3
with:
go-version: "^1.18"
go-version: '^1.18'
- name: Build
run: |
curl --disable --silent --show-error --location --max-time 30 "https://raw.githubusercontent.com/ViBiOh/scripts/main/bootstrap" | bash -s -- "-c" "release"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ on:
branches:
- main
schedule:
- cron: "0 0 * * 6"
- cron: '0 0 * * 6'

jobs:
analyze:
Expand All @@ -42,7 +42,7 @@ jobs:
- name: Setup Golang
uses: actions/setup-go@v3
with:
go-version: "^1.18"
go-version: '^1.18'
- name: Build
run: make build
- name: CodeQL
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/herodote.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ jobs:
HERODOTE_SECRET: ${{ secrets.HERODOTE_SECRET }}
GIT_HOST: github.com
GIT_REPOSITORY: ${{ github.repository }}
SCRIPTS_NO_INTERACTIVE: "1"
SCRIPTS_NO_INTERACTIVE: '1'
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on:
- released

env:
SCRIPTS_NO_INTERACTIVE: "true"
SCRIPTS_NO_INTERACTIVE: 'true'

defaults:
run:
Expand All @@ -35,7 +35,7 @@ jobs:
- name: Setup Golang
uses: actions/setup-go@v3
with:
go-version: "^1.18"
go-version: '^1.18'
- name: Build
run: make init
- name: Assets
Expand Down

0 comments on commit acd00de

Please sign in to comment.