8 Commits
v0.1.4 ... v0

Author SHA1 Message Date
776deb2f3a prepare release v0.1.8
All checks were successful
Create Release / build (push) Successful in 1m29s
2023-10-06 00:07:30 +02:00
7c27907f24 downgrade go version 2023-10-06 00:07:08 +02:00
7329115d9e prepare release v0.1.7
Some checks failed
Create Release / build (push) Failing after 39s
2023-10-06 00:05:19 +02:00
f55605081a try the go image 2023-10-06 00:04:24 +02:00
cc8c306f3c prepare release v0.1.6
All checks were successful
Create Release / build (push) Successful in 28s
2023-10-05 20:55:29 +02:00
1c92f63ab1 ignore specific tags 2023-10-05 20:55:06 +02:00
c2a6a8fbe2 prepare release v0.1.5
All checks were successful
Create Release / build (push) Successful in 38s
2023-10-05 20:49:21 +02:00
026dc9d765 fix vault path 2023-10-05 20:49:07 +02:00
5 changed files with 24 additions and 10 deletions

View File

@@ -4,19 +4,17 @@ on:
push: push:
tags: tags:
- '*' - '*'
tags-ignore:
- v0
- v1
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-go-latest
permissions: permissions:
contents: read contents: read
packages: write packages: write
steps: steps:
- uses: actions/setup-go@v3
with:
go-version: '1.21'
check-latest: true
- name: Import Secrets - name: Import Secrets
id: import-secrets id: import-secrets
uses: https://git.mthie.com/mthie/vault-action@v0 uses: https://git.mthie.com/mthie/vault-action@v0

View File

@@ -1,3 +1,19 @@
# 0.1.8 / 2023-10-06
* downgrade go version
# 0.1.7 / 2023-10-06
* try the go image
# 0.1.6 / 2023-10-05
* ignore specific tags
# 0.1.5 / 2023-10-05
* fix vault path
# 0.1.4 / 2023-10-05 # 0.1.4 / 2023-10-05
* fix order of actions * fix order of actions

View File

@@ -1,3 +1,3 @@
module git.mthie.com/mthie/vault-action/cmd module git.mthie.com/mthie/vault-action/cmd
go 1.21.1 go 1.21

View File

@@ -59,7 +59,7 @@ func main() {
out.Close() out.Close()
resp.Body.Close() resp.Body.Close()
cmd := exec.Command("vault") cmd := exec.Command("./vault")
if err := cmd.Run(); err != nil { if err := cmd.Run(); err != nil {
log.Panicf("error executing: %s", err) log.Panicf("error executing: %s", err)
} }

2
go.mod
View File

@@ -1,6 +1,6 @@
module git.mthie.com/mthie/vault-action module git.mthie.com/mthie/vault-action
go 1.21.1 go 1.21
require ( require (
github.com/hashicorp/vault/api v1.10.0 github.com/hashicorp/vault/api v1.10.0