Skip to content

Commit 48980c7

Browse files
committed
fix: update dependent action versions
Attempt to fix the following error seen in our self-hosted runner builds: ``` ERROR: could not create a builder instance with TLS data loaded from environment ```
1 parent 0921513 commit 48980c7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ runs:
5757
type=sha,prefix=${{env.BRANCH_NAME}}-${{env.DATE}}-${{github.run_number}}-,enable=${{ !startsWith(github.event_name, 'release') }}
5858
type=semver,pattern={{version}},enable=${{ startsWith(github.event_name, 'release') }}
5959
- name: Set up Docker Buildx
60-
uses: docker/setup-buildx-action@v1
60+
uses: docker/setup-buildx-action@v3
6161
- name: Login to ACR
6262
uses: docker/login-action@v1
6363
with:
@@ -72,7 +72,7 @@ runs:
7272
password: ${{ inputs.acr-password }}
7373
- name: Build and push
7474
id: docker_build
75-
uses: docker/build-push-action@v2
75+
uses: docker/build-push-action@v5
7676
with:
7777
context: ${{ inputs.docker-build-context }}
7878
push: ${{ inputs.push }}

0 commit comments

Comments
 (0)