Skip to content

Commit

Permalink
Bump alpine from 3.19.0 to 3.19.1 in /cicd (#173)
Browse files Browse the repository at this point in the history
* Bump alpine from 3.19.0 to 3.19.1 in /cicd

Bumps alpine from 3.19.0 to 3.19.1.

---
updated-dependencies:
- dependency-name: alpine
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump azure/setup-helm from 3 to 4 (#169)

Bumps [azure/setup-helm](https://github.com/azure/setup-helm) from 3 to 4.
- [Release notes](https://github.com/azure/setup-helm/releases)
- [Changelog](https://github.com/Azure/setup-helm/blob/main/CHANGELOG.md)
- [Commits](Azure/setup-helm@v3...v4)

---
updated-dependencies:
- dependency-name: azure/setup-helm
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Bump helm/kind-action from 1.8.0 to 1.9.0 (#168)

Bumps [helm/kind-action](https://github.com/helm/kind-action) from 1.8.0 to 1.9.0.
- [Release notes](https://github.com/helm/kind-action/releases)
- [Commits](helm/kind-action@v1.8.0...v1.9.0)

---
updated-dependencies:
- dependency-name: helm/kind-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* fix deps file

Signed-off-by: Caleb Lloyd <caleb@synadia.com>

* comment out actor

Signed-off-by: Caleb Lloyd <caleb@synadia.com>

* bump dependency release to 0.14.2

* add back in actor

Signed-off-by: Caleb Lloyd <caleb@synadia.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: Caleb Lloyd <caleb@synadia.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Caleb Lloyd <caleb@synadia.com>
Co-authored-by: caleblloyd <caleblloyd@users.noreply.github.com>
  • Loading branch information
3 people authored Apr 9, 2024
1 parent 7b6d9a9 commit de7ab25
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/deps-release-detect.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ jobs:
"dependencyName": "alpine"
}
]'
deps_file="./cicd/tag-deps-version.txt"
deps='${{ steps.dependabot-metadata.outputs.updated-dependencies-json }}'
Expand Down Expand Up @@ -74,10 +75,10 @@ jobs:
tagNewVersion="$(semver -i patch "$tagPrevVersion")"
echo "$tagPrevVersion" > ./cicd/tag-deps-version.txt
echo "$tagNewVersion" >> ./cicd/tag-deps-version.txt
echo "$tagPrevVersion" > "$deps_file"
echo "$tagNewVersion" >> "$deps_file"
git add ./cicd/tag-base-version.txt
git add "$deps_file"
if git commit -m "bump dependency release to $tagNewVersion"; then
push=1
fi
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/deps-release-tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ jobs:
- id: tag
name: Determine tag
run: |
old_version="$(head -n 1 ./cicd/tag-deps-version.txt)"
deps_file="./cicd/tag-deps-version.txt"
old_version="$(head -n 1 "$deps_file")"
old_ref_name="v$old_version"
new_version="$(tail -n 1 ./cicd/tag-deps-version.txt)"
new_version="$(tail -n 1 "$deps_file")"
new_ref_name="v$new_version"
create=true
Expand Down
4 changes: 2 additions & 2 deletions cicd/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#syntax=docker/dockerfile-upstream:1.5
ARG GO_APP

FROM alpine:3.19.0 as deps
FROM alpine:3.19.1 as deps

ARG GO_APP
ARG GORELEASER_DIST_DIR=/go/src/dist
Expand All @@ -28,7 +28,7 @@ RUN <<EOT
cp ${BIN_PATH} /go/bin
EOT

FROM alpine:3.19.0
FROM alpine:3.19.1

ARG GO_APP
ENV GO_APP ${GO_APP}
Expand Down
2 changes: 1 addition & 1 deletion cicd/tag-deps-version.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
0.14.0
0.14.1
0.14.2

0 comments on commit de7ab25

Please sign in to comment.