Skip to content

Commit ddf2997

Browse files
authored
Merge pull request #242 from essentialkaos/develop
Version 3.0.3
2 parents b52b886 + caa79ee commit ddf2997

15 files changed

Lines changed: 228 additions & 196 deletions

File tree

.docker/alpine.docker

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
## REGISTRY CONFIGURATION ######################################################
22

3-
ARG REGISTRY="docker.io"
3+
ARG REGISTRY="ghcr.io"
44

55
## BUILDER #####################################################################
66

7-
FROM ${REGISTRY}/essentialkaos/golang:alpine3.20 as builder
7+
FROM ${REGISTRY}/essentialkaos/golang:alpine3.21 AS builder
88

99
WORKDIR /go/src/github.com/essentialkaos/sslcli
1010

@@ -14,7 +14,7 @@ RUN make deps && make all
1414

1515
## FINAL IMAGE #################################################################
1616

17-
FROM ${REGISTRY}/essentialkaos/alpine:3.20
17+
FROM ${REGISTRY}/essentialkaos/alpine:3.21
1818

1919
LABEL org.opencontainers.image.title="sslcli" \
2020
org.opencontainers.image.description="Pretty awesome command-line client for public SSLLabs API" \

.github/CODEOWNERS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
* @essentialkaos/go
2+
/.github/workflows/* @essentialkaos/devops

.github/dependabot.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,12 @@ updates:
66
target-branch: "develop"
77
schedule:
88
interval: "daily"
9-
timezone: "Europe/London"
9+
timezone: "Etc/UTC"
1010
time: "03:00"
1111
labels:
1212
- "PR • MAINTENANCE"
1313
assignees:
1414
- "andyone"
15-
reviewers:
16-
- "andyone"
1715
groups:
1816
all:
1917
applies-to: version-updates
@@ -26,11 +24,9 @@ updates:
2624
target-branch: "develop"
2725
schedule:
2826
interval: "daily"
29-
timezone: "Europe/London"
30-
time: "04:00"
27+
timezone: "Etc/UTC"
28+
time: "03:00"
3129
labels:
3230
- "PR • MAINTENANCE"
3331
assignees:
3432
- "andyone"
35-
reviewers:
36-
- "andyone"

.github/images/card.svg

Lines changed: 1 addition & 4 deletions
Loading

.github/images/usage.svg

Lines changed: 43 additions & 40 deletions
Loading

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
strategy:
1717
matrix:
18-
go: [ '1.21.x', '1.22.x' ]
18+
go: [ 'oldstable', 'stable' ]
1919

2020
steps:
2121
- name: Checkout
@@ -45,13 +45,14 @@ jobs:
4545
- name: Set up Go
4646
uses: actions/setup-go@v5
4747
with:
48-
go-version: '1.21.x'
48+
go-version: 'stable'
4949

5050
- name: Download dependencies
5151
run: make deps
5252

5353
- name: Check Golang sources with Aligo
5454
uses: essentialkaos/aligo-action@v2
55+
continue-on-error: true
5556
with:
5657
files: ./...
5758

@@ -103,5 +104,5 @@ jobs:
103104
uses: actions/checkout@v4
104105

105106
- name: Check spelling
106-
continue-on-error: true
107107
uses: crate-ci/typos@master
108+
continue-on-error: true

0 commit comments

Comments
 (0)