Skip to content

Commit

Permalink
Replace deprecated set-output command (#910)
Browse files Browse the repository at this point in the history
  • Loading branch information
krysal authored Dec 7, 2022
1 parent 4a6e1b9 commit 4b8f4e0
Showing 1 changed file with 3 additions and 3 deletions.
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

0 comments on commit 4b8f4e0

Please sign in to comment.