Skip to content

Commit fc86c17

Browse files
authored
Merge pull request #75 from essentialkaos/develop
Workflows improvements
2 parents 9abd254 + 1900195 commit fc86c17

4 files changed

Lines changed: 12 additions & 10 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
steps:
2525
- name: Set up Go
26-
uses: actions/setup-go@v2
26+
uses: actions/setup-go@v3
2727
with:
2828
go-version: ${{ matrix.go }}
2929
id: go
@@ -59,7 +59,7 @@ jobs:
5959

6060
steps:
6161
- name: Set up Go
62-
uses: actions/setup-go@v2
62+
uses: actions/setup-go@v3
6363
with:
6464
go-version: '1.17.x'
6565
id: go

.github/workflows/codeql.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,12 @@ on:
66
pull_request:
77
branches: [master]
88
schedule:
9-
- cron: '0 17 * * 1,3,5'
9+
- cron: '0 3 * * */2'
10+
11+
permissions:
12+
security-events: write
13+
actions: read
14+
contents: read
1015

1116
jobs:
1217
analyse:
@@ -15,13 +20,10 @@ jobs:
1520

1621
steps:
1722
- name: Checkout repository
18-
uses: actions/checkout@v2
23+
uses: actions/checkout@v3
1924
with:
2025
fetch-depth: 2
2126

22-
- run: git checkout HEAD^2
23-
if: ${{ github.event_name == 'pull_request' }}
24-
2527
- name: Initialize CodeQL
2628
uses: github/codeql-action/init@v1
2729
with:

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/essentialkaos/sslcli
33
go 1.17
44

55
require (
6-
github.com/essentialkaos/ek/v12 v12.42.1
6+
github.com/essentialkaos/ek/v12 v12.43.0
77
github.com/essentialkaos/sslscan/v13 v13.1.1
88
)
99

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ github.com/andybalholm/brotli v1.0.4/go.mod h1:fO7iG3H7G2nSZ7m0zPUDn85XEX2GTukHG
33
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
44
github.com/essentialkaos/check v1.2.1 h1:avvyFy/1acUNwfxwuOLsHeCjfXtMygtbu0lVDr3nxFs=
55
github.com/essentialkaos/check v1.2.1/go.mod h1:PhxzfJWlf5L/skuyhzBLIvjMB5Xu9TIyDIsqpY5MvB8=
6-
github.com/essentialkaos/ek/v12 v12.42.1 h1:h3PPy0XNXUj1IsEid/p9IzaF0o5hZEGOBFh7XZawAyg=
7-
github.com/essentialkaos/ek/v12 v12.42.1/go.mod h1:Cv/tOZshmFg4pMJnBkg4aW/WyYhzzc41qzZIfk5RSi4=
6+
github.com/essentialkaos/ek/v12 v12.43.0 h1:lnwrfGYQFJ3EjEF4ydW2qnshDcXCR2OnNRk0kwlFpFE=
7+
github.com/essentialkaos/ek/v12 v12.43.0/go.mod h1:Cv/tOZshmFg4pMJnBkg4aW/WyYhzzc41qzZIfk5RSi4=
88
github.com/essentialkaos/go-linenoise/v3 v3.3.5/go.mod h1:g4X3LhT83XT4h7xwrCLclAdMkJvS9qWBQTGNdS6y4vo=
99
github.com/essentialkaos/sslscan/v13 v13.1.1 h1:ic02wruXM5IqkWJ8IvDxrdLYSrTe0EGwDQCryBxxTNU=
1010
github.com/essentialkaos/sslscan/v13 v13.1.1/go.mod h1:kKofHxVvSMXfPKXPgtTYXNxi+t9XbV7ZxldSC6oj5dE=

0 commit comments

Comments
 (0)