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
2 changes: 1 addition & 1 deletion .github/workflows/DependencyUpdate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '>=1.21'
go-version: '1.26'

- name: Update dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/TestAndBuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.25'
go-version: '1.26'
- name: Lint
uses: golangci/golangci-lint-action@v8
with:
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Thank you for your interest in contributing to Zanadir! This document provides g

## Prerequisites

- Go 1.25 or later
- Go 1.26 or later
- Git
- Basic understanding of Go programming language

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Stage 1 - Build binary and get CA certs
FROM golang:1.25-alpine AS builder
FROM golang:1.26-alpine AS builder

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/MustacheCase/zanadir

go 1.25
go 1.26

require (
github.com/olekukonko/tablewriter v0.0.5
Expand Down
Loading