Skip to content
This repository has been archived by the owner on Aug 4, 2023. It is now read-only.

Replace deprecated set-output command #910

Merged
merged 1 commit into from
Dec 7, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

- name: Get Python version
id: python-version
run: echo "::set-output name=value::$(just py-version)"
run: echo "value=$(just py-version)" >> "$GITHUB_OUTPUT"

- name: Setup Python
uses: actions/setup-python@v4
Expand Down Expand Up @@ -59,11 +59,11 @@ jobs:

- name: Get Python version
id: python-version
run: echo "::set-output name=value::$(just py-version)"
run: echo "value=$(just py-version)" >> "$GITHUB_OUTPUT"

- name: Get Airflow version
id: airflow-version
run: echo "::set-output name=value::$(just airflow-version)"
run: echo "value=$(just airflow-version)" >> "$GITHUB_OUTPUT"

- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v2
Expand Down