Skip to content

Commit

Permalink
patch: updated workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
drew-viles committed Aug 30, 2023
1 parent c7c7fd0 commit 95c5a1a
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 11 deletions.
5 changes: 1 addition & 4 deletions .github/RELEASE-TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
# Announcements


# Changes
# What's Changed
4 changes: 2 additions & 2 deletions .github/workflows/pull_request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ jobs:
id-token: write
steps:
- name: Build Local Container
uses: eschercloudai/[email protected].2
uses: eschercloudai/[email protected].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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ jobs:
id-token: write
steps:
- name: Build Local Container
uses: eschercloudai/[email protected].2
uses: eschercloudai/[email protected].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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
id-token: write
steps:
- name: Build Local Container
uses: eschercloudai/[email protected].2
uses: eschercloudai/[email protected].3
if: github.event_name != 'pull_request'
id: build-and-scan
with:
Expand Down Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 95c5a1a

Please sign in to comment.