chore(deps): bump github/codeql-action from 3.26.7 to 3.26.8 #15039
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test External Git & Registry | |
on: | |
pull_request: | |
paths-ignore: | |
- "**.md" | |
- "**.jpg" | |
- "**.png" | |
- "**.gif" | |
- "**.svg" | |
- "adr/**" | |
- "docs/**" | |
- "CODEOWNERS" | |
merge_group: | |
paths-ignore: | |
- "**.md" | |
- "**.jpg" | |
- "**.png" | |
- "**.gif" | |
- "**.svg" | |
- "adr/**" | |
- "docs/**" | |
- "CODEOWNERS" | |
permissions: | |
contents: read | |
# Abort prior jobs in the same workflow / PR | |
concurrency: | |
group: e2e-external-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
validate-external: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Setup golang | |
uses: ./.github/actions/golang | |
- name: Build binary and zarf packages | |
uses: ./.github/actions/packages | |
with: | |
init-package: "false" | |
build-examples: "false" | |
- name: Setup k3d | |
uses: ./.github/actions/k3d | |
- name: Cleanup files | |
uses: ./.github/actions/cleanup-files | |
- name: Run external service test | |
run: make test-external | |
- name: get cluster info | |
uses: ./.github/actions/debug-cluster | |
if: always() | |
- name: Save logs | |
if: always() | |
uses: ./.github/actions/save-logs |