Skip to content

Commit

Permalink
Check mirroring/rate limit headers on GHA runners
Browse files Browse the repository at this point in the history
  • Loading branch information
nightlark committed Jan 22, 2025
1 parent b2f98ed commit b6d7493
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/test-dockerhub-pulls.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Run Crane Commands

on: [push]

jobs:
run-crane:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Download go-containerregistry
run: wget https://github.com/google/go-containerregistry/releases/download/v0.20.3/go-containerregistry_Linux_x86_64.tar.gz

- name: Extract go-containerregistry
run: tar -xzf go-containerregistry_Linux_x86_64.tar.gz

- name: Run crane config 1
run: ./go-containerregistry_Linux_x86_64/crane config busybox:1.37.0 -v

- name: Run crane config 2
run: ./go-containerregistry_Linux_x86_64/crane config busybox:1.37.0 -v

- name: Run crane config 3
run: ./go-containerregistry_Linux_x86_64/crane config busybox:1.37.0 -v

0 comments on commit b6d7493

Please sign in to comment.