-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add GHA workflow to keep track of the Ubuntu image SHA
* This is to workaround the 3mo timeout for GHA scheduled actions on repos with no new commits, by automatically creating new commits.
- Loading branch information
Showing
4 changed files
with
45 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Update SHA of latest ubuntu images | ||
# This is to workaround the 3mo timeout for GHA scheduled actions on repos with | ||
# no new commits, by automatically creating new commits. | ||
on: | ||
schedule: | ||
# check for a new ubuntu image every week at 04:17am on mondays | ||
- cron: "17 04 * * 1" | ||
# let us manually trigger a build | ||
workflow_dispatch: | ||
env: | ||
BASE_IMAGE_NAME: base-docker | ||
ACTION_IMAGE_NAME: base-action | ||
jobs: | ||
jobs: | ||
update: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@master | ||
- uses: extractions/setup-just@69d82fb0233557aec017ef13706851d0694e0f1d | ||
- name: update SHAs | ||
run: just update-docker-shas | ||
- name: Commit file | ||
run: | | ||
git status | ||
git add *.sha | ||
if git diff-index --quiet HEAD; then | ||
exit | ||
fi | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "GitHub Action" | ||
git commit -m "Update base image SHA files" | ||
git push origin |
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 @@ | ||
ubuntu@sha256:33a5cc25d22c45900796a1aca487ad7a7cb09f09ea00b779e3b2026b4fc2faba |
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 @@ | ||
ubuntu@sha256:aabed3296a3d45cede1dc866a24476c4d7e093aa806263c27ddaadbdce3c1054 |