Skip to content
Merged
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
1 change: 1 addition & 0 deletions .github/workflows/auto-module-tagging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
submodules: recursive
fetch-depth: 0 # Fetch all history for all tags

- name: Set up Python
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ jobs:
continue-on-error: ${{ matrix.rust == 'nightly' }}
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
submodules: recursive

- name: Install Rust ${{ matrix.rust }}
uses: dtolnay/rust-toolchain@3c5f7ea28cd621ae0bf5283f0e981fb97b8a7af9 # master
Expand Down Expand Up @@ -73,6 +75,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
submodules: recursive

- name: Install Rust stable
uses: dtolnay/rust-toolchain@3c5f7ea28cd621ae0bf5283f0e981fb97b8a7af9 # stable
Expand Down Expand Up @@ -118,6 +122,8 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
submodules: recursive

- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
Expand Down Expand Up @@ -172,6 +178,8 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
submodules: recursive

- name: Set up Node.js ${{ matrix.node }}
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/commit-override-handler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
submodules: recursive
# Need full history (or at least all commits in PR) plus base branch ref for range comparisons
fetch-depth: 0

Expand All @@ -77,6 +78,7 @@ jobs:
- name: Checkout ghcommon workflow scripts
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
submodules: recursive
repository: jdfalk/ghcommon
ref: ${{ steps.ghcommon-ref.outputs.ref }}
path: .ghcommon
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
submodules: recursive
- name: Generate helper documentation
uses: falkcorp/gha-docs-generator@8207d873d6300212e4d22b97aa22e9b1114f64a7 # v1.1.3
with:
Expand Down Expand Up @@ -110,6 +112,8 @@ jobs:
exit 0

- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
submodules: recursive
if: env.DOCS_DEPLOY_TOKEN != ''

- name: Download documentation artifact
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/manager-sync-dispatcher.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
submodules: recursive
fetch-depth: 0

- name: Set up Python
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/on-release-published.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,13 @@ jobs:
name: Update Floating Tags
runs-on: ubuntu-latest
# Only run for stable releases, not pre-releases (RCs)
if: "!github.event.release.prerelease"
if: '!github.event.release.prerelease'
timeout-minutes: 10
steps:
- name: Checkout repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
submodules: recursive
fetch-depth: 0

- name: Parse version and update floating tags
Expand Down Expand Up @@ -83,11 +84,12 @@ jobs:
runs-on: ubuntu-latest
needs: update-floating-tags
# Only run for stable releases with Go SDK modules
if: "!github.event.release.prerelease"
if: '!github.event.release.prerelease'
steps:
- name: Checkout repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
submodules: recursive
fetch-depth: 0

- name: Set up Python
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/performance-monitoring.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ jobs:
worst: ${{ steps.capture.outputs.worst }}
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
with:
submodules: recursive

- name: Install toolchain
uses: dtolnay/rust-toolchain@3c5f7ea28cd621ae0bf5283f0e981fb97b8a7af9 # stable
Expand Down Expand Up @@ -85,6 +87,8 @@ jobs:
worst: ${{ steps.capture.outputs.worst }}
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
with:
submodules: recursive

- name: Install dependencies
working-directory: testdata/node
Expand Down Expand Up @@ -136,6 +140,8 @@ jobs:
worst: ${{ steps.capture.outputs.worst }}
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10
with:
submodules: recursive

- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
with:
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/pr-automation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ jobs:
- name: Checkout Code
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
submodules: recursive
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}

Expand Down Expand Up @@ -251,6 +252,8 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
submodules: recursive

- name: Apply file-based labels
uses: actions/labeler@f27b608878404679385c85cfa523b85ccb86e213 # v6.1.0
Expand All @@ -268,6 +271,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
submodules: recursive
fetch-depth: 0

- name: Set up Python
Expand Down Expand Up @@ -304,6 +308,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
submodules: recursive
fetch-depth: 0

- name: Analyze PR size and complexity
Expand Down Expand Up @@ -363,6 +368,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
submodules: recursive
fetch-depth: 0

- name: Check for breaking changes
Expand Down Expand Up @@ -544,6 +550,8 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
submodules: recursive

- name: Check for merge conflicts
id: conflict-check
Expand Down Expand Up @@ -614,6 +622,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
submodules: recursive
fetch-depth: 0

- name: Generate SBOM (Syft)
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/reusable-advanced-cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
submodules: recursive

- name: Detect ghcommon ref
id: ghcommon-ref
Expand All @@ -62,6 +64,7 @@ jobs:
- name: Checkout ghcommon workflow scripts
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
submodules: recursive
repository: jdfalk/ghcommon
ref: ${{ steps.ghcommon-ref.outputs.ref }}
sparse-checkout: |
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/reusable-burndown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ jobs:
- name: Checkout target repo
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
submodules: recursive
token: ${{ steps.app-token.outputs.token }}
fetch-depth: 0

Expand Down Expand Up @@ -264,6 +265,7 @@ jobs:
- name: Checkout target repo (sparse)
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
submodules: recursive
path: targets/${{ github.event.repository.name }}
fetch-depth: 1
sparse-checkout: |
Expand Down Expand Up @@ -349,6 +351,7 @@ jobs:
- name: Checkout target repo (sparse)
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
submodules: recursive
path: targets/${{ github.event.repository.name }}
fetch-depth: 1
sparse-checkout: |
Expand Down Expand Up @@ -497,6 +500,7 @@ jobs:
- name: Checkout target repo
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
submodules: recursive
token: ${{ steps.app-token.outputs.token }}
fetch-depth: 1

Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/reusable-ci-minimal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
submodules: recursive

- name: Set up Go (no built-in cache)
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
Expand Down Expand Up @@ -103,6 +105,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
submodules: recursive

- name: Set up Go (no built-in cache)
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
Expand Down Expand Up @@ -144,6 +148,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
submodules: recursive

- name: Set up Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
Expand Down Expand Up @@ -181,6 +187,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
submodules: recursive

- name: Set up Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
Expand Down
Loading
Loading