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
4 changes: 2 additions & 2 deletions .github/workflows/agent-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
chown -R $(id -u):$(id -g) /ws 2>/dev/null || true

- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Go
uses: actions/setup-go@v6
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:
docker run --rm -v "$GITHUB_WORKSPACE:/ws" alpine \
chown -R $(id -u):$(id -g) /ws 2>/dev/null || true

- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: ${{ needs.release-please.outputs.bundle_tag_name }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-policy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
name: Workflow runner policy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Assert PR workflows use hosted runners
run: .github/scripts/assert-pr-workflows-use-hosted-runners.sh
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
chown -R $(id -u):$(id -g) /ws 2>/dev/null || true

- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Go
if: matrix.language == 'go'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/customer-bundle-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Stage customer bundle
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
chown -R $(id -u):$(id -g) /ws 2>/dev/null || true

- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0 # needed for showLastUpdateTime/Author

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dev-stack-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: actions/setup-node@v6
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-publish-ansible-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
chown -R $(id -u):$(id -g) /ws 2>/dev/null || true

- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ env.TAG_NAME }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-publish-ingest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
chown -R $(id -u):$(id -g) /ws 2>/dev/null || true

- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ env.TAG_NAME }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-publish-web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
chown -R $(id -u):$(id -g) /ws 2>/dev/null || true

- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ env.TAG_NAME }}

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pr-checks-docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
name: Ansible API contract
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Test ansible-api contract
run: PYTHONPATH=apps/ansible-api python3 -m unittest discover -s apps/ansible-api/tests
Expand All @@ -56,7 +56,7 @@ jobs:
name: Web Docker image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
Expand All @@ -78,7 +78,7 @@ jobs:
name: Ingest Docker image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
Expand All @@ -100,7 +100,7 @@ jobs:
name: Ansible API Docker image
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-checks-go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
docker run --rm -v "$GITHUB_WORKSPACE:/ws" alpine \
chown -R $(id -u):$(id -g) /ws 2>/dev/null || true

- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: actions/setup-go@v6
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-checks-web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
docker run --rm -v "$GITHUB_WORKSPACE:/ws" alpine \
chown -R $(id -u):$(id -g) /ws 2>/dev/null || true

- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: pnpm/action-setup@v6
with:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/sast.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
chown -R $(id -u):$(id -g) /ws 2>/dev/null || true

- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Go
uses: actions/setup-go@v6
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
image: semgrep/semgrep
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Run semgrep
continue-on-error: true
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
chown -R $(id -u):$(id -g) /ws 2>/dev/null || true

- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Run trivy filesystem scan
uses: aquasecurity/trivy-action@master
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:
docker run --rm -v "$GITHUB_WORKSPACE:/ws" alpine \
chown -R $(id -u):$(id -g) /ws 2>/dev/null || true

- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Deny weak hash algorithms (TS/JS)
run: |
Expand Down Expand Up @@ -238,7 +238,7 @@ jobs:
chown -R $(id -u):$(id -g) /ws 2>/dev/null || true

- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Run trivy config scan
uses: aquasecurity/trivy-action@master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/secret-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
chown -R $(id -u):$(id -g) /ws 2>/dev/null || true

- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
Loading