Skip to content

Commit

Permalink
Merge pull request #9 from GreptimeTeam/ci/update-action
Browse files Browse the repository at this point in the history
ci: update ci task remove deprecated calls
  • Loading branch information
sunng87 authored Dec 10, 2024
2 parents 861a806 + a663f02 commit 716ebbb
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 716ebbb

Please sign in to comment.