diff --git a/.github/RELEASE-TEMPLATE.md b/.github/RELEASE-TEMPLATE.md index 87df246..b4b53ef 100644 --- a/.github/RELEASE-TEMPLATE.md +++ b/.github/RELEASE-TEMPLATE.md @@ -1,4 +1 @@ -# Announcements - - -# Changes +# What's Changed diff --git a/.github/workflows/pull_request.yaml b/.github/workflows/pull_request.yaml index 8cb2dbd..361f8ca 100644 --- a/.github/workflows/pull_request.yaml +++ b/.github/workflows/pull_request.yaml @@ -40,14 +40,14 @@ jobs: id-token: write steps: - name: Build Local Container - uses: eschercloudai/container-security-action@v0.0.1-beta.2 + uses: eschercloudai/container-security-action@v0.0.1-beta.3 if: github.event_name != 'pull_request' id: build-and-scan with: image-repo: ghcr.io repo-username: ${{ github.repository_owner }} repo-password: ${{ secrets.GITHUB_TOKEN }} - image-name: cloud-cli-tools + image-name: dogkat image-tag: ${{ github.ref_name }} min-severity: critical add-latest-tag: false diff --git a/.github/workflows/push.yaml b/.github/workflows/push.yaml index df15c96..000a038 100644 --- a/.github/workflows/push.yaml +++ b/.github/workflows/push.yaml @@ -43,14 +43,14 @@ jobs: id-token: write steps: - name: Build Local Container - uses: eschercloudai/container-security-action@v0.0.1-beta.2 + uses: eschercloudai/container-security-action@v0.0.1-beta.3 if: github.event_name != 'pull_request' id: build-and-scan with: image-repo: ghcr.io repo-username: ${{ github.repository_owner }} repo-password: ${{ secrets.GITHUB_TOKEN }} - image-name: cloud-cli-tools + image-name: dogcat image-tag: ${{ github.ref_name }} min-severity: critical add-latest-tag: false diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml index 56340eb..a737e2e 100644 --- a/.github/workflows/tag.yml +++ b/.github/workflows/tag.yml @@ -42,7 +42,7 @@ jobs: id-token: write steps: - name: Build Local Container - uses: eschercloudai/container-security-action@v0.0.1-beta.2 + uses: eschercloudai/container-security-action@v0.0.1-beta.3 if: github.event_name != 'pull_request' id: build-and-scan with: @@ -83,7 +83,7 @@ jobs: CGO_ENABLED=0 go build -o "$BINARY_NAME" cmd/dogkat/main.go - name: Release Notes run: | - git log $(git describe HEAD~ --tags --abbrev=0)..HEAD --pretty='format:* %h %s%n * %an <%ae>' --no-merges >> ".github/RELEASE-TEMPLATE.md" + git log $(git describe HEAD~ --tags --abbrev=0)..HEAD --pretty='format:* %h %s - %an <%ae>' --no-merges >> ".github/RELEASE-TEMPLATE.md" - name: Release with Notes uses: softprops/action-gh-release@v1 with: diff --git a/docker/Dockerfile b/docker/Dockerfile index 710de35..536ff33 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -13,7 +13,7 @@ RUN go mod download RUN CGO_ENABLED=0 go build -o /tmp/dogkat /app/cmd/dogkat/main.go -FROM alpine:3.17 +FROM alpine:3.18.3 RUN apk update --no-cache RUN apk add bash build-base jq curl git python3 py3-pip openssh-client