Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@ on:
push:
branches: ["main"]
pull_request:

permissions:
contents: read
branches: ["main"]

jobs:
test:
Expand All @@ -32,5 +30,4 @@ jobs:
with:
token: ${{ env.CODECOV_TOKEN }}
files: coverage.out
fail_ci_if_error: true
verbose: true
fail_ci_if_error: false
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Thank you for your interest in contributing to docker-lint!

### Prerequisites

- Go 1.22 or later (matches the `go` directive in `go.mod`)
- Go 1.22.x or later (matches the `go 1.22.0` directive in `go.mod`)
- Git

### Getting Started
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ A minimal, production-grade CLI tool for statically analyzing Dockerfiles to det

### From Source

Requires Go 1.22 or later.
Requires Go 1.22 or later (as specified in `go.mod`).

```bash
go install github.com/devblac/docker-lint/cmd/docker-lint@latest
Expand Down
1 change: 1 addition & 0 deletions cmd/docker-lint/main.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// Package main provides the docker-lint CLI entry point.
package main

import (
Expand Down