Skip to content
This repository was archived by the owner on Jun 30, 2026. It is now read-only.

Commit 286061d

Browse files
authored
Update release-bot-action to 0.6.5 (#12)
1 parent 2cbf82a commit 286061d

3 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/announce-a-release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,20 @@ jobs:
2222
ref: "main"
2323
token: ${{ secrets.RELEASE_TOKEN }}
2424
- name: Release notes
25-
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.4
25+
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.5
2626
with:
2727
entrypoint: publish-release-notes-to-github
2828
env:
2929
RELEASE_TOKEN: ${{ secrets.RELEASE_TOKEN }}
3030
- name: Zulip
31-
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.4
31+
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.5
3232
with:
3333
entrypoint: send-announcement-to-pony-zulip
3434
env:
3535
ZULIP_API_KEY: ${{ secrets.ZULIP_RELEASE_API_KEY }}
3636
ZULIP_EMAIL: ${{ secrets.ZULIP_RELEASE_EMAIL }}
3737
- name: Last Week in Pony
38-
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.4
38+
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.5
3939
with:
4040
entrypoint: add-announcement-to-last-week-in-pony
4141
env:
@@ -53,14 +53,14 @@ jobs:
5353
ref: "main"
5454
token: ${{ secrets.RELEASE_TOKEN }}
5555
- name: Rotate release notes
56-
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.4
56+
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.5
5757
with:
5858
entrypoint: rotate-release-notes
5959
env:
6060
GIT_USER_NAME: "Ponylang Main Bot"
6161
GIT_USER_EMAIL: "ponylang.main@gmail.com"
6262
- name: Delete announcement trigger tag
63-
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.4
63+
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.5
6464
with:
6565
entrypoint: delete-announcement-tag
6666
env:

.github/workflows/prepare-for-a-release.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -26,35 +26,35 @@ jobs:
2626
ref: "main"
2727
token: ${{ secrets.RELEASE_TOKEN }}
2828
- name: Update CHANGELOG.md
29-
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.4
29+
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.5
3030
with:
3131
entrypoint: update-changelog-for-release
3232
env:
3333
GIT_USER_NAME: "Ponylang Main Bot"
3434
GIT_USER_EMAIL: "ponylang.main@gmail.com"
3535
- name: Update VERSION
36-
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.4
36+
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.5
3737
with:
3838
entrypoint: update-version-in-VERSION
3939
env:
4040
GIT_USER_NAME: "Ponylang Main Bot"
4141
GIT_USER_EMAIL: "ponylang.main@gmail.com"
4242
- name: Update version in README
43-
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.4
43+
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.5
4444
with:
4545
entrypoint: update-version-in-README
4646
env:
4747
GIT_USER_NAME: "Ponylang Main Bot"
4848
GIT_USER_EMAIL: "ponylang.main@gmail.com"
4949
- name: Update corral.json
50-
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.4
50+
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.5
5151
with:
5252
entrypoint: update-version-in-corral-json
5353
env:
5454
GIT_USER_NAME: "Ponylang Main Bot"
5555
GIT_USER_EMAIL: "ponylang.main@gmail.com"
5656
- name: Switch to using prebuilt docker image to run
57-
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.4
57+
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.5
5858
with:
5959
entrypoint: update-action-to-use-docker-image-to-run-action
6060
env:
@@ -77,7 +77,7 @@ jobs:
7777
ref: "main"
7878
token: ${{ secrets.RELEASE_TOKEN }}
7979
- name: Trigger artefact creation
80-
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.4
80+
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.5
8181
with:
8282
entrypoint: trigger-artefact-creation
8383
env:
@@ -102,14 +102,14 @@ jobs:
102102
ref: "main"
103103
token: ${{ secrets.RELEASE_TOKEN }}
104104
- name: Add "unreleased" section to CHANGELOG.md
105-
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.4
105+
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.5
106106
with:
107107
entrypoint: add-unreleased-section-to-changelog
108108
env:
109109
GIT_USER_NAME: "Ponylang Main Bot"
110110
GIT_USER_EMAIL: "ponylang.main@gmail.com"
111111
- name: Switch to building action for each run
112-
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.4
112+
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.5
113113
with:
114114
entrypoint: update-action-to-use-dockerfile-to-run-action
115115
env:

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
ref: "main"
2626
token: ${{ secrets.RELEASE_TOKEN }}
2727
- name: Validate CHANGELOG
28-
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.4
28+
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.5
2929
with:
3030
entrypoint: pre-artefact-changelog-check
3131

@@ -56,7 +56,7 @@ jobs:
5656
ref: "main"
5757
token: ${{ secrets.RELEASE_TOKEN }}
5858
- name: Trigger
59-
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.4
59+
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.5
6060
with:
6161
entrypoint: trigger-release-announcement
6262
env:

0 commit comments

Comments
 (0)