Skip to content

Commit e0c0932

Browse files
authored
Address CI comments (#347)
* remove deprecated set-output from workflow * ensure CI testuser password cannot be present in fat images
1 parent be06d3d commit e0c0932

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/fatimage.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,6 @@ jobs:
4848
cd packer/
4949
packer init .
5050
PACKER_LOG=1 packer build -only openstack.openhpc -on-error=${{ vars.PACKER_ON_ERROR }} -var-file=$PKR_VAR_environment_root/${{ vars.CI_CLOUD }}.pkrvars.hcl openstack.pkr.hcl
51-
env:
52-
TESTUSER_PASSWORD: ${{ secrets.TEST_USER_PASSWORD }}
5351
5452
- name: Get created image name from manifest
5553
id: manifest
@@ -60,5 +58,5 @@ jobs:
6058
sleep 30
6159
done
6260
IMAGE_NAME=$(openstack image show -f value -c name $IMAGE_ID)
63-
echo "::set-output name=IMAGE_ID::$IMAGE_ID"
64-
echo "::set-output name=IMAGE_NAME::$IMAGE_NAME"
61+
echo "IMAGE_ID=${IMAGE_ID}" >> "$GITHUB_OUTPUT"
62+
echo "IMAGE_NAME=${IMAGE_NAME}" >> "$GITHUB_OUTPUT"

0 commit comments

Comments
 (0)