Skip to content

Commit

Permalink
ci: update ci task remove deprecated calls
Browse files Browse the repository at this point in the history
  • Loading branch information
sunng87 committed Dec 10, 2024
1 parent 861a806 commit a663f02
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/update-metabase.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.x'

Expand All @@ -27,7 +27,7 @@ jobs:
id: get_version
run: |
LATEST_RELEASE=$(curl -s https://api.github.com/repos/metabase/metabase/releases/latest | jq -r .tag_name)
echo "::set-output name=version::$LATEST_RELEASE"
echo "version=$LATEST_RELEASE" >> $GITHUB_OUTPUT
- name: Run update_files.py
run: |
Expand All @@ -37,9 +37,9 @@ jobs:
id: check_dirty
run: |
if [[ -n $(git status --porcelain) ]]; then
echo "::set-output name=is_dirty::true"
echo "is_dirty=true" >> $GITHUB_OUTPUT
else
echo "::set-output name=is_dirty::false"
echo "is_dirty=false" >> $GITHUB_OUTPUT
fi
- name: Create pull request if workspace is dirty
Expand Down

0 comments on commit a663f02

Please sign in to comment.