Skip to content

Commit

Permalink
Switch to using images from GitHub Container Registry
Browse files Browse the repository at this point in the history
The ponylang org ones in DockerHub will stop being updated soon.
  • Loading branch information
SeanTAllen committed Nov 6, 2023
1 parent 6ead8a7 commit cba93c7
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 21 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/announce-a-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,20 @@ jobs:
ref: "main"
token: ${{ secrets.RELEASE_TOKEN }}
- name: Release notes
uses: ponylang/release-bot-action@0.6.1
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.3
with:
entrypoint: publish-release-notes-to-github
env:
RELEASE_TOKEN: ${{ secrets.RELEASE_TOKEN }}
- name: Zulip
uses: ponylang/release-bot-action@0.6.1
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.3
with:
entrypoint: send-announcement-to-pony-zulip
env:
ZULIP_API_KEY: ${{ secrets.ZULIP_RELEASE_API_KEY }}
ZULIP_EMAIL: ${{ secrets.ZULIP_RELEASE_EMAIL }}
- name: Last Week in Pony
uses: ponylang/release-bot-action@0.6.1
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.3
with:
entrypoint: add-announcement-to-last-week-in-pony
env:
Expand All @@ -48,14 +48,14 @@ jobs:
ref: "main"
token: ${{ secrets.RELEASE_TOKEN }}
- name: Rotate release notes
uses: ponylang/release-bot-action@0.6.1
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.3
with:
entrypoint: rotate-release-notes
env:
GIT_USER_NAME: "Sean T. Allen"
GIT_USER_EMAIL: "sean@seantallen.com"
- name: Delete announcement trigger tag
uses: ponylang/release-bot-action@0.6.1
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.3
with:
entrypoint: delete-announcement-tag
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/breakage-against-ponyc-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: Verify in release mode on Linux with most recent ponyc
runs-on: ubuntu-latest
container:
image: ponylang/shared-docker-ci-x86-64-unknown-linux-builder:latest
image: ghcr.io/ponylang/shared-docker-ci-x86-64-unknown-linux-builder:latest
steps:
- uses: actions/checkout@v1
- name: Test with the most recent ponyc
Expand All @@ -19,7 +19,7 @@ jobs:
name: Verify in debug mode on Linux with most recent ponyc
runs-on: ubuntu-latest
container:
image: ponylang/shared-docker-ci-x86-64-unknown-linux-builder:latest
image: ghcr.io/ponylang/shared-docker-ci-x86-64-unknown-linux-builder:latest
steps:
- uses: actions/checkout@v1
- name: Test with the most recent ponyc
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/changelog-bot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
name: Update CHANGELOG.md
steps:
- name: Update Changelog
uses: docker://ponylang/changelog-bot-action:0.3.5
uses: docker://ghcr.io/ponylang/changelog-bot-action:0.3.5
with:
git_user_name: "Sean T. Allen"
git_user_email: "sean@seantallen.com"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
name: Verify CHANGELOG is valid
runs-on: ubuntu-latest
container:
image: ponylang/changelog-tool:release
image: ghcr.io/ponylang/changelog-tool:release
steps:
- uses: actions/checkout@v1
- name: Verify CHANGELOG
Expand All @@ -32,7 +32,7 @@ jobs:
name: Verify release mode on Linux with most recent ponyc release
runs-on: ubuntu-latest
container:
image: ponylang/shared-docker-ci-x86-64-unknown-linux-builder:release
image: ghcr.io/ponylang/shared-docker-ci-x86-64-unknown-linux-builder:release
steps:
- uses: actions/checkout@v1
- name: Test with the most recent ponyc release
Expand All @@ -42,7 +42,7 @@ jobs:
name: Verify debug mode on Linux with most recent ponyc release
runs-on: ubuntu-latest
container:
image: ponylang/shared-docker-ci-x86-64-unknown-linux-builder:release
image: ghcr.io/ponylang/shared-docker-ci-x86-64-unknown-linux-builder:release
steps:
- uses: actions/checkout@v1
- name: Test with the most recent ponyc release
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/prepare-for-a-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,28 +21,28 @@ jobs:
ref: "main"
token: ${{ secrets.RELEASE_TOKEN }}
- name: Update CHANGELOG.md
uses: ponylang/release-bot-action@0.6.1
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.3
with:
entrypoint: update-changelog-for-release
env:
GIT_USER_NAME: "Sean T. Allen"
GIT_USER_EMAIL: "sean@seantallen.com"
- name: Update VERSION
uses: ponylang/release-bot-action@0.6.1
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.3
with:
entrypoint: update-version-in-VERSION
env:
GIT_USER_NAME: "Sean T. Allen"
GIT_USER_EMAIL: "sean@seantallen.com"
- name: Update version in README
uses: ponylang/release-bot-action@0.6.1
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.3
with:
entrypoint: update-version-in-README
env:
GIT_USER_NAME: "Sean T. Allen"
GIT_USER_EMAIL: "sean@seantallen.com"
- name: Update corral.json
uses: ponylang/release-bot-action@0.6.1
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.3
with:
entrypoint: update-version-in-corral-json
env:
Expand All @@ -64,7 +64,7 @@ jobs:
ref: "main"
token: ${{ secrets.RELEASE_TOKEN }}
- name: Trigger artefact creation
uses: ponylang/release-bot-action@0.6.1
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.3
with:
entrypoint: trigger-artefact-creation
env:
Expand All @@ -89,7 +89,7 @@ jobs:
ref: "main"
token: ${{ secrets.RELEASE_TOKEN }}
- name: Add "unreleased" section to CHANGELOG.md
uses: ponylang/release-bot-action@0.6.1
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.3
with:
entrypoint: add-unreleased-section-to-changelog
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-notes-reminder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ jobs:
name: Prompt to add release notes
steps:
- name: Prompt to add release notes
uses: docker://ponylang/release-notes-reminder-bot-action:0.1.0
uses: docker://ghcr.io/ponylang/release-notes-reminder-bot-action:0.1.0
env:
API_CREDENTIALS: ${{ secrets.API_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/release-notes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
name: Update release notes
steps:
- name: Update
uses: docker://ponylang/release-notes-bot-action:0.3.6
uses: docker://ghcr.io/ponylang/release-notes-bot-action:0.3.6
with:
git_user_name: "Sean T. Allen"
git_user_email: "sean@seantallen.com"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
ref: "main"
token: ${{ secrets.RELEASE_TOKEN }}
- name: Validate CHANGELOG
uses: ponylang/release-bot-action@0.6.1
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.3
with:
entrypoint: pre-artefact-changelog-check

Expand All @@ -34,7 +34,7 @@ jobs:
ref: "main"
token: ${{ secrets.RELEASE_TOKEN }}
- name: Trigger
uses: ponylang/release-bot-action@0.6.1
uses: docker://ghcr.io/ponylang/release-bot-action:0.6.3
with:
entrypoint: trigger-release-announcement
env:
Expand Down

0 comments on commit cba93c7

Please sign in to comment.