Skip to content

Commit

Permalink
fix(build): dockerfile updated to go 1.20, gha updated actions
Browse files Browse the repository at this point in the history
  • Loading branch information
xanmanning committed Jan 24, 2024
1 parent 3ced4e1 commit 6976a26
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Setup Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: '1.20.0'

Expand All @@ -45,10 +45,10 @@ jobs:
needs: [build]
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Setup Go
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: '1.20.0'

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.17-alpine AS builder
FROM golang:1.20-alpine AS builder

WORKDIR /build/vault_dump
COPY . .
Expand Down

0 comments on commit 6976a26

Please sign in to comment.