Skip to content

Commit 6d7a0dc

Browse files
committed
Revert "attempt adding a GPL go pkg"
This reverts commit 58e39ee.
1 parent 58e39ee commit 6d7a0dc

File tree

4 files changed

+6
-10
lines changed

4 files changed

+6
-10
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -899,21 +899,22 @@ jobs:
899899
run: |
900900
make sqlc-vet
901901
902-
# dependency-license-review checks that no license-incompatible dependencies have been introduced.
902+
# dependency-license-review checks that no license-incompatible dependencies have been introduced.
903903
# This action is not intended to do a vulnerability check since that is handled by a separate action.
904904
dependency-license-review:
905905
runs-on: ubuntu-latest
906906
steps:
907-
- name: "Checkout Repository"
907+
- name: 'Checkout Repository'
908908
uses: actions/checkout@v4
909-
- name: "Dependency Review"
909+
- name: 'Dependency Review'
910910
id: review
911911
uses: actions/dependency-review-action@v4
912912
with:
913-
allow-licenses: Apache-2.0, BSD-2-Clause, BSD-3-Clause, CC0-1.0, ISC #, MIT, MIT-0, MPL-2.0
913+
#allow-licenses: Apache-2.0, BSD-2-Clause, BSD-3-Clause, CC0-1.0, ISC, MIT, MIT-0, MPL-2.0
914+
allow-licenses: BSD-2-Clause, BSD-3-Clause, CC0-1.0, ISC, MIT, MIT-0, MPL-2.0
914915
license-check: true
915916
vulnerability-check: false
916-
- name: "Report"
917+
- name: 'Report'
917918
# make sure this step runs even if the previous failed
918919
if: ${{ failure() && steps.review.conclusion == 'failure' }}
919920
shell: bash

cmd/coder/main.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ import (
44
_ "time/tzdata"
55

66
"github.com/coder/coder/v2/cli"
7-
8-
_ "github.com/basgys/go-gpl/gpl"
97
)
108

119
func main() {

go.mod

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,6 @@ require (
215215
require go.uber.org/mock v0.4.0
216216

217217
require (
218-
github.com/basgys/go-gpl v0.0.0-20230209111130-4e0087feed95
219218
github.com/benbjohnson/clock v1.3.5
220219
github.com/coder/serpent v0.7.0
221220
github.com/gomarkdown/markdown v0.0.0-20231222211730-1d6d20845b47

go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,6 @@ github.com/aymanbagabas/go-osc52/v2 v2.0.1 h1:HwpRHbFMcZLEVr42D4p7XBqjyuxQH5SMiE
124124
github.com/aymanbagabas/go-osc52/v2 v2.0.1/go.mod h1:uYgXzlJ7ZpABp8OJ+exZzJJhRNQ2ASbcXHWsFqH8hp8=
125125
github.com/aymerick/douceur v0.2.0 h1:Mv+mAeH1Q+n9Fr+oyamOlAkUNPWPlA8PPGR0QAaYuPk=
126126
github.com/aymerick/douceur v0.2.0/go.mod h1:wlT5vV2O3h55X9m7iVYN0TBM0NH/MmbLnd30/FjWUq4=
127-
github.com/basgys/go-gpl v0.0.0-20230209111130-4e0087feed95 h1:K9X3r6eO+Fa1sbcoyWEz5s6R6z3GlpIe9KC5qfcTUX4=
128-
github.com/basgys/go-gpl v0.0.0-20230209111130-4e0087feed95/go.mod h1:XY/3nkvH5NfeP5X7QNqbwhdXwwD6TCA+NgUHI+UrUPY=
129127
github.com/benbjohnson/clock v1.3.5 h1:VvXlSJBzZpA/zum6Sj74hxwYI2DIxRWuNIoXAzHZz5o=
130128
github.com/benbjohnson/clock v1.3.5/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA=
131129
github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=

0 commit comments

Comments
 (0)