-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
auto release dependency updates (#172)
* auto release dependency updates Signed-off-by: Caleb Lloyd <[email protected]> * apply patch to stable release Signed-off-by: Caleb Lloyd <[email protected]> --------- Signed-off-by: Caleb Lloyd <[email protected]>
- Loading branch information
1 parent
8244807
commit 9fdc10b
Showing
5 changed files
with
152 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
name: Deps Release | ||
|
||
on: 'pull_request' | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
detect: | ||
name: Detect | ||
runs-on: ubuntu-latest | ||
if: ${{ github.actor == 'dependabot[bot]' }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Configure Git | ||
run: | | ||
git config user.name "$GITHUB_ACTOR" | ||
git config user.email "[email protected]" | ||
git checkout -b "$GITHUB_HEAD_REF" | ||
- name: Dependabot metadata | ||
id: dependabot-metadata | ||
uses: dependabot/fetch-metadata@v2 | ||
|
||
- name: Install node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18 | ||
|
||
- name: Install semver | ||
run: |- | ||
npm install -g semver | ||
- name: Bump | ||
run: |- | ||
set -e | ||
push=0 | ||
config='[ | ||
{ | ||
"directory": "cicd", | ||
"dependencyName": "alpine" | ||
} | ||
]' | ||
deps='${{ steps.dependabot-metadata.outputs.updated-dependencies-json }}' | ||
for i in $(seq 0 "$(("$(echo "$config" | jq length) - 1"))"); do | ||
directory="$(echo "$config" | jq -r ".[$i].directory")" | ||
dependencyName="$(echo "$config" | jq -r ".[$i].dependencyName")" | ||
match="$(echo "$deps" | jq ".[] | select(.directory == \"/$directory\" and .dependencyName == \"$dependencyName\")")" | ||
if [ -z "$match" ]; then | ||
continue | ||
fi | ||
updateType="$(echo "$match" | jq -r ".updateType")" | ||
prevVersion="$(echo "$match" | jq -r ".prevVersion")" | ||
newVersion="$(echo "$match" | jq -r ".newVersion")" | ||
echo "directory : $directory" | ||
echo "dependencyName : $dependencyName" | ||
echo "updateType : $updateType" | ||
echo "prevVersion : $prevVersion" | ||
echo "newVersion : $newVersion" | ||
tagPrevVersion="$(git ls-remote 2>/dev/null \ | ||
| grep -oE 'refs/tags/v[0-9]+\.[0-9]+\.[0-9]+' \ | ||
| cut -d'/' -f3 \ | ||
| xargs semver \ | ||
| tail -n 1)" | ||
tagNewVersion="$(semver -i patch "$tagPrevVersion")" | ||
echo "$tagPrevVersion" > ./cicd/tag-deps-version.txt | ||
echo "$tagNewVersion" >> ./cicd/tag-deps-version.txt | ||
git add ./cicd/tag-base-version.txt | ||
if git commit -m "bump dependency release to $tagNewVersion"; then | ||
push=1 | ||
fi | ||
done | ||
if [ "$push" = "1" ]; then | ||
git push -u origin "$GITHUB_HEAD_REF" | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
name: Deps Release | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
tag: | ||
name: Tag | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Configure Git | ||
run: | | ||
git config user.name "$GITHUB_ACTOR" | ||
git config user.email "[email protected]" | ||
- id: tag | ||
name: Determine tag | ||
run: | | ||
old_version="$(head -n 1 ./cicd/tag-deps-version.txt)" | ||
old_ref_name="v$old_version" | ||
new_version="$(tail -n 1 ./cicd/tag-deps-version.txt)" | ||
new_ref_name="v$new_version" | ||
create=true | ||
if [ "$(git ls-remote origin "refs/tags/$new_ref_name" | wc -l)" = "1" ]; then | ||
create=false | ||
fi | ||
echo "old-version=$old_version" | tee -a "$GITHUB_OUTPUT" | ||
echo "old-ref-name=$old_ref_name" | tee -a "$GITHUB_OUTPUT" | ||
echo "new-version=$new_version" | tee -a "$GITHUB_OUTPUT" | ||
echo "new-ref-name=$new_ref_name" | tee -a "$GITHUB_OUTPUT" | ||
echo "create=$create" | tee -a "$GITHUB_OUTPUT" | ||
- if: ${{ fromJSON(steps.tag.outputs.create) }} | ||
name: Tag | ||
run: | | ||
commit="$(git rev-parse HEAD)" | ||
git fetch origin refs/tags/"${{ steps.tag.outputs.old-ref-name }}" | ||
git checkout -b deps "${{ steps.tag.outputs.old-ref-name }}" | ||
git restore --source="$commit" ./cicd | ||
git add ./cicd | ||
if git commit -m "bump dependency release to ${{ steps.tag.outputs.new-version }}"; then | ||
git tag "${{ steps.tag.outputs.new-ref-name }}" | ||
git push origin "${{ steps.tag.outputs.new-ref-name }}" | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
0.14.0 | ||
0.14.1 |