mirror of
https://github.com/quay/quay.git
synced 2026-01-26 06:21:37 +03:00
* chore: Use recent versions of GitHub Actions * chore: Extract hack/verify-requirements.sh * chore: Remove Docker Builds from CI and keep Cypress Tests * chore: Use cypress-io/github-action@v5
26 lines
729 B
YAML
26 lines
729 B
YAML
name: Download AWS IP ranges
|
|
|
|
on:
|
|
# push:
|
|
# paths:
|
|
# - .github/workflows/aws-ip-json.yml # run workflow every time this file changes
|
|
workflow_dispatch:
|
|
# unschedule for now. we must wait until the flat action can open a PRs,
|
|
# then set it to do so against master.
|
|
# this means this workflow needs to run manually against the target branches.
|
|
# schedule:
|
|
# - cron: '0 0 * * *'
|
|
|
|
jobs:
|
|
scheduled:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check out repo
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Fetch data
|
|
uses: githubocto/flat@v3
|
|
with:
|
|
http_url: https://ip-ranges.amazonaws.com/ip-ranges.json
|
|
downloaded_filename: util/ipresolver/aws-ip-ranges.json
|