Skip to content

Commit bf14b22

Browse files
authored
Merge pull request #1517 from carvel-dev/dockr-buildx-fix
Docker buildx with k8s without specifying endpoint argument
2 parents ae66c51 + e377b46 commit bf14b22

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/release-process.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,21 @@ jobs:
1616
id-token: write
1717
steps:
1818
- name: Check out code
19-
uses: actions/checkout@v3.5.2
19+
uses: actions/checkout@v4
2020
with:
2121
fetch-depth: 0
2222

2323
- name: Install Carvel Tools
2424
run: ./hack/install-deps.sh
2525

2626
- name: Install imgpkg
27-
uses: carvel-dev/setup-action@v1
27+
uses: carvel-dev/setup-action@v2
2828
with:
2929
only: imgpkg
3030
token: ${{ secrets.GITHUB_TOKEN }}
3131

3232
- name: Login to GitHub Container Registry
33-
uses: docker/login-action@v3
33+
uses: docker/login-action@v3.1.0
3434
with:
3535
registry: ghcr.io
3636
username: ${{ github.actor }}
@@ -42,13 +42,13 @@ jobs:
4242
go-version: 1.21.6
4343

4444
- name: Set up Cosign
45-
uses: sigstore/cosign-installer@v3
45+
uses: sigstore/cosign-installer@v3.4.0
4646

4747
- name: Run release script
4848
run: |
4949
set -e -x
5050
minikube start --driver=docker --wait=all
51-
docker buildx create minikube --use --driver=kubernetes --bootstrap
51+
docker buildx create --name minikube --use --driver=kubernetes --bootstrap
5252
./hack/build-release.sh
5353
# Create release folder to store all the output artifacts
5454
mkdir release
@@ -220,7 +220,7 @@ jobs:
220220
--certificate-oidc-issuer=https://token.actions.githubusercontent.com ./tmp/checksums.txt
221221
222222
- name: Create release draft and upload release yaml
223-
uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844
223+
uses: softprops/action-gh-release@v2.0.2
224224
with:
225225
name: ${{ github.ref_name }}
226226
token: ${{ secrets.GITHUB_TOKEN }}
@@ -232,7 +232,7 @@ jobs:
232232
prerelease: true
233233

234234
- name: Get uploaded release YAML checksum
235-
uses: actions/github-script@v6
235+
uses: actions/github-script@v7.0.1
236236
id: get-checksums-from-draft-release
237237
if: startsWith(github.ref, 'refs/tags/')
238238
with:

0 commit comments

Comments
 (0)