Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
on: [ push ]

jobs:
build:

Check warning on line 6 in .github/workflows/build.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

build.yaml:6: overly broad permissions: default permissions used due to no permissions: block
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v7

Check failure on line 10 in .github/workflows/build.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 10 in .github/workflows/build.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

build.yaml:10: unpinned action reference: action is not pinned to a hash (required by blanket policy)
- name: Build containers
run: make -f Makefile.all all-container
2 changes: 1 addition & 1 deletion .github/workflows/fastbuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
on: [ push, pull_request ]

jobs:
fastbuild:

Check warning on line 6 in .github/workflows/fastbuild.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

fastbuild.yaml:6: overly broad permissions: default permissions used due to no permissions: block
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v7

Check failure on line 10 in .github/workflows/fastbuild.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 10 in .github/workflows/fastbuild.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

fastbuild.yaml:10: unpinned action reference: action is not pinned to a hash (required by blanket policy)
- name: Build containers
run: make -f Makefile.all all-container ALL_PLATFORMS='linux/amd64 linux/arm64'
2 changes: 1 addition & 1 deletion .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
on: [ push, pull_request ]

jobs:
lint:

Check warning on line 6 in .github/workflows/lint.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

lint.yaml:6: overly broad permissions: default permissions used due to no permissions: block
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v7

Check failure on line 10 in .github/workflows/lint.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 10 in .github/workflows/lint.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

lint.yaml:10: unpinned action reference: action is not pinned to a hash (required by blanket policy)
- name: Lint
run: make -f Makefile.all lint
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
on: [ push, pull_request ]

jobs:
test:

Check warning on line 6 in .github/workflows/test.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

test.yaml:6: overly broad permissions: default permissions used due to no permissions: block
strategy:
matrix:
platform: [ "ubuntu-latest" ]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v7

Check failure on line 13 in .github/workflows/test.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 13 in .github/workflows/test.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

test.yaml:13: unpinned action reference: action is not pinned to a hash (required by blanket policy)
- name: Test
run: make -f Makefile.all test GOFLAGS="-v"
12 changes: 6 additions & 6 deletions scripts/third_party/jq/.github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
SUFFIX: linux-${{ matrix.arch }}
steps:
- name: Clone repository
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
submodules: true
- name: Install packages
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
SUFFIX: macos-${{ matrix.arch }}
steps:
- name: Clone repository
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
submodules: true
- name: Install packages
Expand Down Expand Up @@ -207,7 +207,7 @@ jobs:
run: git config --system core.autocrlf false
shell: bash
- name: Clone repository
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
submodules: true
- uses: msys2/setup-msys2@v2
Expand Down Expand Up @@ -260,7 +260,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
submodules: true
- name: Install packages
Expand Down Expand Up @@ -296,7 +296,7 @@ jobs:
needs: linux
steps:
- name: Clone repository
uses: actions/checkout@v4
uses: actions/checkout@v7
- name: Download executables
uses: actions/download-artifact@v4
with:
Expand Down Expand Up @@ -371,7 +371,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/jq-')
steps:
- name: Clone repository
uses: actions/checkout@v4
uses: actions/checkout@v7
- name: Download artifacts
uses: actions/download-artifact@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion scripts/third_party/jq/.github/workflows/decnum.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Clone repository
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
submodules: true
- name: Install packages
Expand Down
2 changes: 1 addition & 1 deletion scripts/third_party/jq/.github/workflows/manpage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v7
- name: Setup Python
uses: actions/setup-python@v5
with:
Expand Down
4 changes: 2 additions & 2 deletions scripts/third_party/jq/.github/workflows/oniguruma.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Clone repository
uses: actions/checkout@v4
uses: actions/checkout@v7
- name: Install packages
run: |
sudo apt-get update
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Clone repository
uses: actions/checkout@v4
uses: actions/checkout@v7
- name: Install packages
run: |
sudo apt-get update
Expand Down
2 changes: 1 addition & 1 deletion scripts/third_party/jq/.github/workflows/scanbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
submodules: true
- name: Install packages
Expand Down
2 changes: 1 addition & 1 deletion scripts/third_party/jq/.github/workflows/valgrind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Clone repository
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
submodules: true
- name: Install packages
Expand Down
2 changes: 1 addition & 1 deletion scripts/third_party/jq/.github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
working-directory: docs
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v7
- name: Setup Python
uses: actions/setup-python@v5
with:
Expand Down
Loading