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/k8s-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Setup Go (for kubeconform and kube-linter)
uses: actions/setup-go@v5
with:
go-version: 1.25.3
go-version: 1.25.5
- name: Install kubeconform
run: go install github.com/yannh/kubeconform/cmd/kubeconform@latest
- name: Install kube-linter
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/service.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0 # Need full history to find previous tags
fetch-depth: 0 # Need full history to find previous tags

- name: Get previous release tag for comparison
id: prev_tag
Expand Down Expand Up @@ -160,7 +160,7 @@ jobs:
if: matrix.type == 'go'
uses: actions/setup-go@v5
with:
go-version: 1.25.3
go-version: 1.25.5
- name: Cache Go modules
if: matrix.type == 'go'
uses: actions/cache@v4
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<h1 align="center">Go Micro Commerce</h1>

[![Go Version](https://img.shields.io/badge/go-%3E%3D1.25.3-blue.svg)](https://golang.org/) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Go Version](https://img.shields.io/badge/go-%3E%3D1.25.5-blue.svg)](https://golang.org/) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

This application is primarily intended for exploring technical concepts. My goal is to experiment with different technologies, software architecture designs, and all the essential components involved in building distributed systems in Golang.

Expand Down
2 changes: 1 addition & 1 deletion api-gateway/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ---- Build Stage ----
# Use the official Golang image to build the application
FROM golang:1.25.3-alpine AS builder
FROM golang:1.25.5-alpine AS builder

# Set the working directory to match the repo structure
WORKDIR /workspace
Expand Down
2 changes: 1 addition & 1 deletion api-gateway/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/raphaeldiscky/go-micro-commerce/api-gateway

go 1.25.3
go 1.25.5

require (
github.com/google/uuid v1.6.0
Expand Down
Loading
Loading