Update dependency aptible/supercronic to v0.2.2 #2

Merged
mwalbeck merged 1 commit from renovate/aptible-supercronic-0.2.x into main 2023-02-28 20:17:01 +00:00
Collaborator

This PR contains the following updates:

Package Update Change
aptible/supercronic patch v0.2.1 -> v0.2.2

Release Notes

aptible/supercronic

v0.2.2

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/aptible/supercronic/compare/v0.2.1...v0.2.2

Installation Instructions

supercronic-linux-amd64

Add the following stanza to your Dockerfile to install supercronic-linux-amd64.

You will need to install curl beforehand.

### Latest releases available at https://github.com/aptible/supercronic/releases
ENV SUPERCRONIC_URL=https://github.com/aptible/supercronic/releases/download/v0.2.2/supercronic-linux-amd64 \
    SUPERCRONIC=supercronic-linux-amd64 \
    SUPERCRONIC_SHA1SUM=2319da694833c7a147976b8e5f337cd83397d6be

RUN curl -fsSLO "$SUPERCRONIC_URL" \
 && echo "${SUPERCRONIC_SHA1SUM}  ${SUPERCRONIC}" | sha1sum -c - \
 && chmod +x "$SUPERCRONIC" \
 && mv "$SUPERCRONIC" "/usr/local/bin/${SUPERCRONIC}" \
 && ln -s "/usr/local/bin/${SUPERCRONIC}" /usr/local/bin/supercronic

supercronic-linux-386

Add the following stanza to your Dockerfile to install supercronic-linux-386.

You will need to install curl beforehand.

### Latest releases available at https://github.com/aptible/supercronic/releases

ENV SUPERCRONIC_URL=https://github.com/aptible/supercronic/releases/download/v0.2.2/supercronic-linux-386 \
    SUPERCRONIC=supercronic-linux-386 \
    SUPERCRONIC_SHA1SUM=5f984723554c59034b464110d393f1c2b2de3e8a

RUN curl -fsSLO "$SUPERCRONIC_URL" \
 && echo "${SUPERCRONIC_SHA1SUM}  ${SUPERCRONIC}" | sha1sum -c - \
 && chmod +x "$SUPERCRONIC" \
 && mv "$SUPERCRONIC" "/usr/local/bin/${SUPERCRONIC}" \
 && ln -s "/usr/local/bin/${SUPERCRONIC}" /usr/local/bin/supercronic

supercronic-linux-arm

Add the following stanza to your Dockerfile to install supercronic-linux-arm.

You will need to install curl beforehand.

### Latest releases available at https://github.com/aptible/supercronic/releases

ENV SUPERCRONIC_URL=https://github.com/aptible/supercronic/releases/download/v0.2.2/supercronic-linux-arm \
    SUPERCRONIC=supercronic-linux-arm \
    SUPERCRONIC_SHA1SUM=f6a61efbdd9a223e750aa03d16bbc417113a64d9

RUN curl -fsSLO "$SUPERCRONIC_URL" \
 && echo "${SUPERCRONIC_SHA1SUM}  ${SUPERCRONIC}" | sha1sum -c - \
 && chmod +x "$SUPERCRONIC" \
 && mv "$SUPERCRONIC" "/usr/local/bin/${SUPERCRONIC}" \
 && ln -s "/usr/local/bin/${SUPERCRONIC}" /usr/local/bin/supercronic

supercronic-linux-arm64

Add the following stanza to your Dockerfile to install supercronic-linux-arm64.

You will need to install curl beforehand.

### Latest releases available at https://github.com/aptible/supercronic/releases
ENV SUPERCRONIC_URL=https://github.com/aptible/supercronic/releases/download/v0.2.2/supercronic-linux-arm64 \
    SUPERCRONIC=supercronic-linux-arm64 \
    SUPERCRONIC_SHA1SUM=c7d51b610d96a9a58d5eef0308922acc8be62eac

RUN curl -fsSLO "$SUPERCRONIC_URL" \
 && echo "${SUPERCRONIC_SHA1SUM}  ${SUPERCRONIC}" | sha1sum -c - \
 && chmod +x "$SUPERCRONIC" \
 && mv "$SUPERCRONIC" "/usr/local/bin/${SUPERCRONIC}" \
 && ln -s "/usr/local/bin/${SUPERCRONIC}" /usr/local/bin/supercronic

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Update | Change | |---|---|---| | [aptible/supercronic](https://github.com/aptible/supercronic) | patch | `v0.2.1` -> `v0.2.2` | --- ### Release Notes <details> <summary>aptible/supercronic</summary> ### [`v0.2.2`](https://github.com/aptible/supercronic/releases/tag/v0.2.2) [Compare Source](https://github.com/aptible/supercronic/compare/v0.2.1...v0.2.2) #### What's Changed - Fix broken formatting in README.md by [@&#8203;alco](https://github.com/alco) in https://github.com/aptible/supercronic/pull/119 - fix: Allow Leading Zeroes in Cron by [@&#8203;michaelwang13](https://github.com/michaelwang13) in https://github.com/aptible/supercronic/pull/116 #### New Contributors - [@&#8203;alco](https://github.com/alco) made their first contribution in https://github.com/aptible/supercronic/pull/119 - [@&#8203;michaelwang13](https://github.com/michaelwang13) made their first contribution in https://github.com/aptible/supercronic/pull/116 **Full Changelog**: https://github.com/aptible/supercronic/compare/v0.2.1...v0.2.2 ### Installation Instructions #### supercronic-linux-amd64 Add the following stanza to your Dockerfile to install `supercronic-linux-amd64`. You will need to install `curl` beforehand. ### Latest releases available at https://github.com/aptible/supercronic/releases ENV SUPERCRONIC_URL=https://github.com/aptible/supercronic/releases/download/v0.2.2/supercronic-linux-amd64 \ SUPERCRONIC=supercronic-linux-amd64 \ SUPERCRONIC_SHA1SUM=2319da694833c7a147976b8e5f337cd83397d6be RUN curl -fsSLO "$SUPERCRONIC_URL" \ && echo "${SUPERCRONIC_SHA1SUM} ${SUPERCRONIC}" | sha1sum -c - \ && chmod +x "$SUPERCRONIC" \ && mv "$SUPERCRONIC" "/usr/local/bin/${SUPERCRONIC}" \ && ln -s "/usr/local/bin/${SUPERCRONIC}" /usr/local/bin/supercronic #### supercronic-linux-386 Add the following stanza to your Dockerfile to install `supercronic-linux-386`. You will need to install `curl` beforehand. ### Latest releases available at https://github.com/aptible/supercronic/releases ENV SUPERCRONIC_URL=https://github.com/aptible/supercronic/releases/download/v0.2.2/supercronic-linux-386 \ SUPERCRONIC=supercronic-linux-386 \ SUPERCRONIC_SHA1SUM=5f984723554c59034b464110d393f1c2b2de3e8a RUN curl -fsSLO "$SUPERCRONIC_URL" \ && echo "${SUPERCRONIC_SHA1SUM} ${SUPERCRONIC}" | sha1sum -c - \ && chmod +x "$SUPERCRONIC" \ && mv "$SUPERCRONIC" "/usr/local/bin/${SUPERCRONIC}" \ && ln -s "/usr/local/bin/${SUPERCRONIC}" /usr/local/bin/supercronic #### supercronic-linux-arm Add the following stanza to your Dockerfile to install `supercronic-linux-arm`. You will need to install `curl` beforehand. ### Latest releases available at https://github.com/aptible/supercronic/releases ENV SUPERCRONIC_URL=https://github.com/aptible/supercronic/releases/download/v0.2.2/supercronic-linux-arm \ SUPERCRONIC=supercronic-linux-arm \ SUPERCRONIC_SHA1SUM=f6a61efbdd9a223e750aa03d16bbc417113a64d9 RUN curl -fsSLO "$SUPERCRONIC_URL" \ && echo "${SUPERCRONIC_SHA1SUM} ${SUPERCRONIC}" | sha1sum -c - \ && chmod +x "$SUPERCRONIC" \ && mv "$SUPERCRONIC" "/usr/local/bin/${SUPERCRONIC}" \ && ln -s "/usr/local/bin/${SUPERCRONIC}" /usr/local/bin/supercronic #### supercronic-linux-arm64 Add the following stanza to your Dockerfile to install `supercronic-linux-arm64`. You will need to install `curl` beforehand. ### Latest releases available at https://github.com/aptible/supercronic/releases ENV SUPERCRONIC_URL=https://github.com/aptible/supercronic/releases/download/v0.2.2/supercronic-linux-arm64 \ SUPERCRONIC=supercronic-linux-arm64 \ SUPERCRONIC_SHA1SUM=c7d51b610d96a9a58d5eef0308922acc8be62eac RUN curl -fsSLO "$SUPERCRONIC_URL" \ && echo "${SUPERCRONIC_SHA1SUM} ${SUPERCRONIC}" | sha1sum -c - \ && chmod +x "$SUPERCRONIC" \ && mv "$SUPERCRONIC" "/usr/local/bin/${SUPERCRONIC}" \ && ln -s "/usr/local/bin/${SUPERCRONIC}" /usr/local/bin/supercronic </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4xNTIuNSIsInVwZGF0ZWRJblZlciI6IjM0LjE1Mi41In0=-->
renovate-bot force-pushed renovate/aptible-supercronic-0.2.x from b601aa8b16 to 4cf3e36d98 2023-02-28 20:07:32 +00:00 Compare
mwalbeck merged commit d5e22516a0 into main 2023-02-28 20:17:01 +00:00
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: mwalbeck/docker-supercronic#2
No description provided.