Skip to content

Commit

Permalink
style: Fix quote
Browse files Browse the repository at this point in the history
  • Loading branch information
ViBiOh committed Feb 5, 2023
1 parent 0953242 commit 8f5fe25
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
- main

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

defaults:
run:
Expand All @@ -28,7 +28,7 @@ jobs:
- name: Setup Golang
uses: actions/setup-go@v3
with:
go-version: "^1.20"
go-version: '^1.20'

- name: Build
run: |
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
- name: Setup Golang
uses: actions/setup-go@v3
with:
go-version: "^1.20"
go-version: '^1.20'
- name: Build
env:
GO_ARCHS: linux/amd64 linux/arm linux/arm64 darwin/amd64 darwin/arm64
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.20"
go-version: '^1.20'
- name: Build
run: make build
- name: CodeQL
Expand Down
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 @@ -37,7 +37,7 @@ jobs:
- name: Setup Golang
uses: actions/setup-go@v3
with:
go-version: "^1.20"
go-version: '^1.20'
- name: Build
run: make init
- name: GPG
Expand Down

0 comments on commit 8f5fe25

Please sign in to comment.