File tree Expand file tree Collapse file tree 13 files changed +33
-24
lines changed Expand file tree Collapse file tree 13 files changed +33
-24
lines changed Original file line number Diff line number Diff line change @@ -18,4 +18,4 @@ updates:
1818 groups :
1919 actions :
2020 patterns :
21- - " *"
21+ - " *"
Original file line number Diff line number Diff line change 2424 persist-credentials : false
2525
2626 - name : Setup Go
27- uses : actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1 .0
27+ uses : actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5 .0
2828 with :
2929 go-version : ${{ env.GO_VERSION }}
3030 cache : false
3333 run : |
3434 make lint
3535 make test
36- make build
36+ make build
Original file line number Diff line number Diff line change @@ -20,12 +20,12 @@ jobs:
2020 persist-credentials : false
2121
2222 - name : Initialize CodeQL
23- uses : github/codeql-action/init@4f3212b61783c3c68e8309a0f18a699764811cda # v3.27.1
23+ uses : github/codeql-action/init@76621b61decf072c1cee8dd1ce2d2a82d33c17ed # v3.29.8
2424 with :
2525 languages : go
2626
2727 - name : Autobuild
28- uses : github/codeql-action/autobuild@4f3212b61783c3c68e8309a0f18a699764811cda # v3.27.1
28+ uses : github/codeql-action/autobuild@76621b61decf072c1cee8dd1ce2d2a82d33c17ed # v3.29.8
2929
3030 - name : Analyze
31- uses : github/codeql-action/analyze@4f3212b61783c3c68e8309a0f18a699764811cda # v3.27.1
31+ uses : github/codeql-action/analyze@76621b61decf072c1cee8dd1ce2d2a82d33c17ed # v3.29.8
Original file line number Diff line number Diff line change 1717 persist-credentials : false
1818
1919 - name : Review Dependencies
20- uses : actions/dependency-review-action@4081bf99e2866ebe428fc0477b69eb4fcda7220a # v4.4.0
20+ uses : actions/dependency-review-action@da24556b548a50705dd671f47852072ea4c105d9 # v4.7.1
2121 with :
22- fail-on-severity : critical
22+ fail-on-severity : critical
Original file line number Diff line number Diff line change @@ -3,14 +3,15 @@ package main
33import (
44 "context"
55 "fmt"
6- "gitmdm/internal/analyzer"
7- "gitmdm/internal/config"
8- "gitmdm/internal/gitmdm"
96 "log"
107 "os"
118 "os/exec"
129 "strings"
1310 "time"
11+
12+ "github.com/codeGROOVE-dev/gitMDM/internal/analyzer"
13+ "github.com/codeGROOVE-dev/gitMDM/internal/config"
14+ "github.com/codeGROOVE-dev/gitMDM/internal/gitmdm"
1415)
1516
1617// executeCheck executes a single check rule (command or file) and returns the output.
Original file line number Diff line number Diff line change @@ -5,13 +5,14 @@ import (
55 "context"
66 "errors"
77 "fmt"
8- "gitmdm/internal/gitmdm"
98 "log"
109 "os"
1110 "os/exec"
1211 "runtime"
1312 "strings"
1413 "time"
14+
15+ "github.com/codeGROOVE-dev/gitMDM/internal/gitmdm"
1516)
1617
1718// containsShellOperators checks if a command contains shell operators that indicate
Original file line number Diff line number Diff line change @@ -11,9 +11,6 @@ import (
1111 "errors"
1212 "flag"
1313 "fmt"
14- "gitmdm/internal/analyzer"
15- "gitmdm/internal/config"
16- "gitmdm/internal/gitmdm"
1714 "io"
1815 "log"
1916 "math"
@@ -31,6 +28,10 @@ import (
3128 "syscall"
3229 "time"
3330
31+ "github.com/codeGROOVE-dev/gitMDM/internal/analyzer"
32+ "github.com/codeGROOVE-dev/gitMDM/internal/config"
33+ "github.com/codeGROOVE-dev/gitMDM/internal/gitmdm"
34+
3435 "github.com/codeGROOVE-dev/retry"
3536 "gopkg.in/yaml.v3"
3637)
Original file line number Diff line number Diff line change @@ -10,9 +10,6 @@ import (
1010 "encoding/json"
1111 "flag"
1212 "fmt"
13- "gitmdm/internal/gitmdm"
14- "gitmdm/internal/gitstore"
15- "gitmdm/internal/viewmodels"
1613 "html/template"
1714 "io/fs"
1815 "log"
@@ -27,6 +24,10 @@ import (
2724 "syscall"
2825 "time"
2926
27+ "github.com/codeGROOVE-dev/gitMDM/internal/gitmdm"
28+ "github.com/codeGROOVE-dev/gitMDM/internal/gitstore"
29+ "github.com/codeGROOVE-dev/gitMDM/internal/viewmodels"
30+
3031 "github.com/codeGROOVE-dev/retry"
3132)
3233
Original file line number Diff line number Diff line change @@ -3,12 +3,13 @@ package analyzer
33
44import (
55 "fmt"
6- "gitmdm/internal/config"
7- "gitmdm/internal/gitmdm"
86 "log"
97 "os"
108 "regexp"
119 "strings"
10+
11+ "github.com/codeGROOVE-dev/gitMDM/internal/config"
12+ "github.com/codeGROOVE-dev/gitMDM/internal/gitmdm"
1213)
1314
1415var debug = os .Getenv ("DEBUG" ) == "true"
Original file line number Diff line number Diff line change 11package config_test
22
33import (
4- "gitmdm/internal/config"
54 "os"
65 "testing"
76
7+ "github.com/codeGROOVE-dev/gitMDM/internal/config"
8+
89 "gopkg.in/yaml.v3"
910)
1011
You can’t perform that action at this time.
0 commit comments