Skip to content

Commit 53e24bd

Browse files
committed
Fix copilot reported issues.
1 parent 5048142 commit 53e24bd

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

.github/workflows/main.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ jobs:
2424
- name: Kaniko build
2525
uses: aevea/action-kaniko@master
2626
with:
27-
image: vscode-devcontainer-base
2827
registry: ghcr.io
2928
password: ${{ secrets.GITHUB_TOKEN }}
3029
tag: ${{ env.DOCKER_IMAGE_TAG }}
@@ -48,7 +47,7 @@ jobs:
4847
env:
4948
BRANCH_NAME: "${{ github.event.pull_request.head.ref }}"
5049
run: |
51-
echo "::set-output name=DOCKER_IMAGE_TAG::$(${BRANCH_NAME} | cut -d '/' -f 2)"
50+
echo "DOCKER_IMAGE_TAG::$(${BRANCH_NAME} | cut -d '/' -f 2)" >> $GITHUB_OUTPUT
5251
- name: Kaniko build
5352
uses: aevea/action-kaniko@master
5453
with:
@@ -75,7 +74,7 @@ jobs:
7574
env:
7675
TAG_NAME: "${{ github.event.pull_request.head.ref }}"
7776
run: |
78-
echo "::set-output name=DOCKER_IMAGE_TAG::$(${TAG_NAME} | cut -d '/' -f 3)"
77+
echo "DOCKER_IMAGE_TAG::$(${TAG_NAME} | cut -d '/' -f 3)" >> $GITHUB_OUTPUT
7978
- name: Kaniko build
8079
uses: aevea/action-kaniko@master
8180
with:

0 commit comments

Comments
 (0)