Skip to content

Commit

Permalink
Replacing omahaproxy.appspot due to deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
PF4Public committed Mar 3, 2023
1 parent 5bec0f6 commit b7a0779
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/new_version_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ name: New version check
on:
# enabling manual trigger
workflow_dispatch:
# running every 6 hours
# running every hour
schedule:
- cron: '48 */6 * * *'
- cron: '48 * * * *'

jobs:
check:
Expand All @@ -23,9 +23,9 @@ jobs:
- name: Get the latest Chromium version
id: latest-version
run: |
echo "linux_version=$( curl -s https://omahaproxy.appspot.com/linux )" >> $GITHUB_OUTPUT
echo "win_version=$( curl -s https://omahaproxy.appspot.com/win )" >> $GITHUB_OUTPUT
echo "mac_version=$( curl -s https://omahaproxy.appspot.com/mac )" >> $GITHUB_OUTPUT
echo "linux_version=$( curl -s https://versionhistory.googleapis.com/v1/chrome/platforms/linux/channels/stable/versions/all/releases?filter=endtime=none | jq -rc '.releases | .[] | select (.fraction > 0.9) | .version' )" >> $GITHUB_OUTPUT
echo "win_version=$( curl -s https://versionhistory.googleapis.com/v1/chrome/platforms/win/channels/stable/versions/all/releases?filter=endtime=none | jq -rc '.releases | .[] | select (.fraction > 0.9) | .version' )" >> $GITHUB_OUTPUT
echo "mac_version=$( curl -s https://versionhistory.googleapis.com/v1/chrome/platforms/mac/channels/stable/versions/all/releases?filter=endtime=none | jq -rc '.releases | .[] | select (.fraction > 0.9) | .version' )" >> $GITHUB_OUTPUT
- uses: actions/checkout@v3
- name: Create Issue for all platforms
if: |
Expand Down

0 comments on commit b7a0779

Please sign in to comment.