Skip to content

Commit

Permalink
chore(deps): update all
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Aug 8, 2023
1 parent 798011a commit 910bb0c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/go.yml
Expand Up @@ -33,9 +33,9 @@ jobs:
matrix:
golangci_lint: [v1.38]
steps:
- uses: actions/checkout@v3.1.0
- uses: actions/checkout@v3.5.3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3.2.0
uses: golangci/golangci-lint-action@v3.6.0
with:
version: ${{ matrix.golangci_lint }}
args: --timeout=2m
Expand All @@ -52,12 +52,12 @@ jobs:
OS: ubuntu-latest
GOLANG: ${{ matrix.golang }}
steps:
- uses: actions/checkout@v3.1.0
- uses: actions/checkout@v3.5.3
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.golang }}
- uses: actions/cache@v3.0.4
- uses: actions/cache@v3.3.1
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.golang }}-v1-${{ hashFiles('**/go.sum') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Expand Up @@ -6,8 +6,8 @@ jobs:
semantic-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.1.0
- uses: codfish/semantic-release-action@v1.9.0
- uses: actions/checkout@v3.5.3
- uses: codfish/semantic-release-action@v1.10.0
if: github.ref == 'refs/heads/master'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions Dockerfile
Expand Up @@ -4,7 +4,7 @@ ARG VCS_REF
ARG VERSION

# build
FROM golang:1.20.1-alpine as builder
FROM golang:1.21.0-alpine as builder
RUN apk add --no-cache git gcc musl-dev make
ENV GO111MODULE=on
WORKDIR /go/src/moul.io/moulsay
Expand All @@ -14,7 +14,7 @@ COPY . ./
RUN make install

# minimalist runtime
FROM alpine:3.16.0
FROM alpine:3.18.3
LABEL org.label-schema.build-date=$BUILD_DATE \
org.label-schema.name="moulsay" \
org.label-schema.description="" \
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Expand Up @@ -4,6 +4,6 @@ go 1.16

require (
github.com/eidolon/wordwrap v0.0.0-20161011182207-e0f54129b8bb
github.com/peterbourgon/ff/v3 v3.0.0
github.com/peterbourgon/ff/v3 v3.4.0
moul.io/asciimoul v1.1.0
)

0 comments on commit 910bb0c

Please sign in to comment.