Skip to content

Commit 7c3b4dc

Browse files
authored
Merge branch 'main' into patch-1
2 parents 24668c4 + d3edb6a commit 7c3b4dc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

content/docs/buildpack-author-guide/publishing-with-github-actions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,15 @@ jobs:
3434
- ubuntu-latest
3535
steps:
3636
- id: checkout
37-
uses: actions/checkout@v2
37+
uses: actions/checkout@v3
3838
- if: ${{ github.event_name != 'pull_request' || ! github.event.pull_request.head.repo.fork }}
3939
uses: docker/login-action@v1
4040
with:
4141
registry: docker.io
4242
username: ${{ secrets.DOCKER_HUB_USER }}
4343
password: ${{ secrets.DOCKER_HUB_PASS }}
4444
- id: setup-pack
45-
uses: buildpacks/github-actions/setup-pack@v4.4.0
45+
uses: buildpacks/github-actions/setup-pack@v4.9.0
4646
- id: package
4747
run: |
4848
#!/usr/bin/env bash
@@ -59,7 +59,7 @@ jobs:
5959
env:
6060
REPO: docker.io/${{ secrets.DOCKER_HUB_USER }}
6161
- id: register
62-
uses: docker://ghcr.io/buildpacks/actions/registry/request-add-entry:4.4.0
62+
uses: docker://ghcr.io/buildpacks/actions/registry/request-add-entry:4.9.0
6363
with:
6464
token: ${{ secrets.PUBLIC_REPO_TOKEN }}
6565
id: ${{ steps.package.outputs.bp_id }}

0 commit comments

Comments
 (0)