This is an automated email from the ASF dual-hosted git repository.

zeroshade pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-go.git


The following commit(s) were added to refs/heads/main by this push:
     new 6cb27cbb infra: just run `audit-and-verify.yml` once (#591)
6cb27cbb is described below

commit 6cb27cbb05b880839eb0aaf0628891122ef54e52
Author: Kevin Liu <[email protected]>
AuthorDate: Tue Oct 7 09:01:08 2025 -0700

    infra: just run `audit-and-verify.yml` once (#591)
    
    otherwise one of the run will 403 from querying github
    
    Example:
    
https://github.com/apache/iceberg-go/actions/runs/18289853638/job/52074150686
    ```
    ++ curl --fail --location --show-error --silent 
https://api.github.com/repos/golang/go/git/matching-refs/tags/go
    ++ jq -r ' .[] | .ref'
    ++ sort -V
    ++ tail -1
    ++ sed s,refs/tags/go,,g
    curl: (56) The requested URL returned error: 403
    ```
---
 .github/workflows/audit-and-verify.yml | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)

diff --git a/.github/workflows/audit-and-verify.yml 
b/.github/workflows/audit-and-verify.yml
index 779630d2..597d2bdc 100644
--- a/.github/workflows/audit-and-verify.yml
+++ b/.github/workflows/audit-and-verify.yml
@@ -36,13 +36,7 @@ permissions:
 jobs:
   audit-and-verify:
     name: Audit and Verify
-    runs-on: ${{ matrix.os }}
-    strategy:
-      fail-fast: false
-      matrix:
-        os:
-          - macos-latest
-          - ubuntu-latest
+    runs-on: ubuntu-latest
     steps:
       - name: Checkout
         uses: actions/checkout@v4

Reply via email to