diff --git a/.github/workflows/build-crates-individually.patch.yml b/.github/workflows/build-crates-individually.patch.yml index 548dc0d49..72f182c81 100644 --- a/.github/workflows/build-crates-individually.patch.yml +++ b/.github/workflows/build-crates-individually.patch.yml @@ -53,7 +53,7 @@ jobs: ) | jq -c .) echo $MATRIX echo $MATRIX | jq . - echo "::set-output name=matrix::$MATRIX" + echo "matrix=$MATRIX" >> "$GITHUB_OUTPUT" check-matrix: runs-on: ubuntu-latest diff --git a/.github/workflows/build-crates-individually.yml b/.github/workflows/build-crates-individually.yml index 8fcd05811..93d324552 100644 --- a/.github/workflows/build-crates-individually.yml +++ b/.github/workflows/build-crates-individually.yml @@ -80,7 +80,7 @@ jobs: ) | jq -c .) echo $MATRIX echo $MATRIX | jq . - echo "::set-output name=matrix::$MATRIX" + echo "matrix=$MATRIX" >> "$GITHUB_OUTPUT" check-matrix: runs-on: ubuntu-latest diff --git a/.github/workflows/continous-delivery.yml b/.github/workflows/continous-delivery.yml index 0c3263d5d..2333d080b 100644 --- a/.github/workflows/continous-delivery.yml +++ b/.github/workflows/continous-delivery.yml @@ -57,7 +57,7 @@ jobs: return context.payload.release.tag_name.substring(0,2) - name: Setting API Version id: set - run: echo "::set-output name=major_version::${{ steps.get.outputs.result }}" + run: echo "major_version=${{ steps.get.outputs.result }}" >> "$GITHUB_OUTPUT" # Each time this workflow is executed, a build will be triggered to create a new image # with the corresponding tags using information from Git diff --git a/.github/workflows/continous-integration-docker.yml b/.github/workflows/continous-integration-docker.yml index 7c739ddc7..3b75656e3 100644 --- a/.github/workflows/continous-integration-docker.yml +++ b/.github/workflows/continous-integration-docker.yml @@ -139,28 +139,28 @@ jobs: LWD_TIP_DISK=$(gcloud compute images list --filter="status=READY AND name~lwd-cache-.+-[0-9a-f]+-v${LOCAL_STATE_VERSION}-${NETWORK}-tip" --format="value(NAME)" --sort-by=~creationTimestamp --limit=1) if [[ -z "$LWD_TIP_DISK" ]]; then echo "No TIP disk found for LWD" - echo "::set-output name=lwd_tip_disk::${{ toJSON(false) }}" + echo "lwd_tip_disk=${{ toJSON(false) }}" >> "$GITHUB_OUTPUT" else echo "Disk: $LWD_TIP_DISK" - echo "::set-output name=lwd_tip_disk::${{ toJSON(true) }}" + echo "lwd_tip_disk=${{ toJSON(true) }}" >> "$GITHUB_OUTPUT" fi ZEBRA_TIP_DISK=$(gcloud compute images list --filter="status=READY AND name~zebrad-cache-.+-[0-9a-f]+-v${LOCAL_STATE_VERSION}-${NETWORK}-tip" --format="value(NAME)" --sort-by=~creationTimestamp --limit=1) if [[ -z "$ZEBRA_TIP_DISK" ]]; then echo "No TIP disk found for ZEBRA" - echo "::set-output name=zebra_tip_disk::${{ toJSON(false) }}" + echo "zebra_tip_disk=${{ toJSON(false) }}" >> "$GITHUB_OUTPUT" else echo "Disk: $ZEBRA_TIP_DISK" - echo "::set-output name=zebra_tip_disk::${{ toJSON(true) }}" + echo "zebra_tip_disk=${{ toJSON(true) }}" >> "$GITHUB_OUTPUT" fi ZEBRA_CHECKPOINT_DISK=$(gcloud compute images list --filter="status=READY AND name~zebrad-cache-.+-[0-9a-f]+-v${LOCAL_STATE_VERSION}-${NETWORK}-checkpoint" --format="value(NAME)" --sort-by=~creationTimestamp --limit=1) if [[ -z "$ZEBRA_CHECKPOINT_DISK" ]]; then echo "No CHECKPOINT found for ZEBRA" - echo "::set-output name=zebra_checkpoint_disk::${{ toJSON(false) }}" + echo "zebra_checkpoint_disk=${{ toJSON(false) }}" >> "$GITHUB_OUTPUT" else echo "Disk: $ZEBRA_CHECKPOINT_DISK" - echo "::set-output name=zebra_checkpoint_disk::${{ toJSON(true) }}" + echo "zebra_checkpoint_disk=${{ toJSON(true) }}" >> "$GITHUB_OUTPUT" fi build: diff --git a/.github/workflows/deploy-gcp-tests.yml b/.github/workflows/deploy-gcp-tests.yml index bc72000cb..e0ea6e3ef 100644 --- a/.github/workflows/deploy-gcp-tests.yml +++ b/.github/workflows/deploy-gcp-tests.yml @@ -394,7 +394,7 @@ jobs: fi echo "Selected Disk: $CACHED_DISK_NAME" - echo "::set-output name=cached_disk_name::$CACHED_DISK_NAME" + echo "cached_disk_name=$CACHED_DISK_NAME" >> "$GITHUB_OUTPUT" echo "STATE_VERSION=$LOCAL_STATE_VERSION" >> "$GITHUB_ENV" echo "CACHED_DISK_NAME=$CACHED_DISK_NAME" >> "$GITHUB_ENV"