Update dependency aptible/supercronic to v0.2.23 #25

Merged
renovate-bot merged 1 commits from renovate/aptible-supercronic-0.2.x into main 2023-04-14 18:06:03 +00:00
Collaborator

This PR contains the following updates:

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

Release Notes

aptible/supercronic

v0.2.23

Compare Source

What's Changed

New Contributors

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

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.23/supercronic-linux-amd64 \
    SUPERCRONIC=supercronic-linux-amd64 \
    SUPERCRONIC_SHA1SUM=dbed853c06aba2c611bbb1955b2c1667b51dcb0a

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.23/supercronic-linux-386 \
    SUPERCRONIC=supercronic-linux-386 \
    SUPERCRONIC_SHA1SUM=a0278ab890dd0ae8828f4786527f0942465d65da

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.23/supercronic-linux-arm \
    SUPERCRONIC=supercronic-linux-arm \
    SUPERCRONIC_SHA1SUM=78c5a4e04ef37c3865af2d8b43621e8a1e60f9a3

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.23/supercronic-linux-arm64 \
    SUPERCRONIC=supercronic-linux-arm64 \
    SUPERCRONIC_SHA1SUM=5f0d9939beadcb64d94d8212ae808e303154333a

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.2` -> `v0.2.23` | --- ### Release Notes <details> <summary>aptible/supercronic</summary> ### [`v0.2.23`](https://github.com/aptible/supercronic/releases/tag/v0.2.23) [Compare Source](https://github.com/aptible/supercronic/compare/v0.2.2...v0.2.23) #### What's Changed - Update README.md by [@&#8203;joeclayallday](https://github.com/joeclayallday) in https://github.com/aptible/supercronic/pull/121 - Bump to current Go version. by [@&#8203;UserNotFound](https://github.com/UserNotFound) in https://github.com/aptible/supercronic/pull/125 #### New Contributors - [@&#8203;joeclayallday](https://github.com/joeclayallday) made their first contribution in https://github.com/aptible/supercronic/pull/121 - [@&#8203;UserNotFound](https://github.com/UserNotFound) made their first contribution in https://github.com/aptible/supercronic/pull/125 **Full Changelog**: https://github.com/aptible/supercronic/compare/v0.2.2...v0.2.23 ### 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.23/supercronic-linux-amd64 \ SUPERCRONIC=supercronic-linux-amd64 \ SUPERCRONIC_SHA1SUM=dbed853c06aba2c611bbb1955b2c1667b51dcb0a 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.23/supercronic-linux-386 \ SUPERCRONIC=supercronic-linux-386 \ SUPERCRONIC_SHA1SUM=a0278ab890dd0ae8828f4786527f0942465d65da 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.23/supercronic-linux-arm \ SUPERCRONIC=supercronic-linux-arm \ SUPERCRONIC_SHA1SUM=78c5a4e04ef37c3865af2d8b43621e8a1e60f9a3 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.23/supercronic-linux-arm64 \ SUPERCRONIC=supercronic-linux-arm64 \ SUPERCRONIC_SHA1SUM=5f0d9939beadcb64d94d8212ae808e303154333a 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:eyJjcmVhdGVkSW5WZXIiOiIzNS40MC4wIiwidXBkYXRlZEluVmVyIjoiMzUuNDAuMCJ9-->
renovate-bot added 1 commit 2023-04-14 17:06:30 +00:00
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
288878ea0c
Update dependency aptible/supercronic to v0.2.23
renovate-bot merged commit 288878ea0c into main 2023-04-14 18:06:03 +00:00
Sign in to join this conversation.
No reviewers
No Label
No Milestone
No project
No Assignees
1 Participants
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#25
No description provided.