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

Commit

Permalink
Replace deprecated set-output command
Browse files Browse the repository at this point in the history
  • Loading branch information
Krystle Salazar committed Dec 5, 2022
1 parent e739f58 commit 253ec8d
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 253ec8d

Please sign in to comment.