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
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Generate helper documentation
uses: jdfalk/docs-generator-action@348ba194a5f4060f07d954cbc0d1f123230c4580 # v1.1.3
uses: jdfalk/docs-generator-action@8207d873d6300212e4d22b97aa22e9b1114f64a7 # v1.1.3
with:
source-dir: .github/workflows/scripts
workflows-dir: .github/workflows
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-automation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ jobs:
"

- name: Run intelligent labeling
uses: jdfalk/pr-auto-label-action@54023423d4f61a781402f6c801d3c3b48af7a3c4 # v1.1.3
uses: jdfalk/pr-auto-label-action@329b41e704ab05c0ffc2b3581dffa249be11dea4 # v1.1.3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
pr-number: ${{ github.event.number }}
Expand Down
44 changes: 22 additions & 22 deletions .github/workflows/reusable-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,14 +115,14 @@ jobs:
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Load repository configuration
id: load
uses: jdfalk/load-config-action@482b9f0e631b2325071cd9bf04c8fda4591044b0 # v1.1.3
uses: jdfalk/load-config-action@bb213cbf6b6e789bea8ad0787f2914760d00536b # v1.1.3
with:
config-file: .github/repository-config.yml
fail-on-missing: false

- name: Generate language matrices
id: matrices
uses: jdfalk/ci-generate-matrices-action@96db335687d5263a5f9ca676ba2df8d834465b18 # v1.1.6
uses: jdfalk/ci-generate-matrices-action@8c36d080ec55e96d3532e9b02417054fc6aaaeac # v1.1.6
with:
repository-config: ${{ steps.load.outputs.config }}
fallback-go-version: ${{ inputs.go-version }}
Expand Down Expand Up @@ -305,7 +305,7 @@ jobs:
name: Cache npm (Workflow Scripts)
needs: detect-changes
if: needs.detect-changes.outputs.workflows-scripts == 'true' || github.event_name == 'workflow_dispatch'
uses: jdfalk/ghcommon/.github/workflows/reusable-advanced-cache.yml@cf2068996e1ecf737a6e2c269a9429f0764e76cd # v1.10.3+
uses: jdfalk/ghcommon/.github/workflows/reusable-advanced-cache.yml@1e106b5c7bc2e80beb0c6019e8ac263d41f2ed5f # v1.10.3+
with:
language: 'node'
cache-prefix: 'npm-workflow-scripts'
Expand Down Expand Up @@ -389,7 +389,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Generate protobuf
uses: jdfalk/gha-release-protobuf@afcb06673c957919bf28b9661b58038931588ea5 # v1.0.1
uses: jdfalk/gha-release-protobuf@1c07a62621ea5bdaf7fd46643fd4e650c69de8d9 # v1.0.1

# Language-specific build and test jobs
go-ci:
Expand Down Expand Up @@ -447,13 +447,13 @@ jobs:
run: sudo apt-get update && sudo apt-get install -y $PACKAGES

- name: Build Go project
uses: jdfalk/ci-workflow-helpers-action@e64725c836a7ea33925f02a86d673d898ce4a713 # v1.1.4
uses: jdfalk/ci-workflow-helpers-action@c8b87fae92ee0a0458e47b970ed892310323aa58 # v1.1.4
with:
command: go-setup

- name: Test Go project
if: ${{ !inputs.skip-tests }}
uses: jdfalk/ci-workflow-helpers-action@e64725c836a7ea33925f02a86d673d898ce4a713 # v1.1.4
uses: jdfalk/ci-workflow-helpers-action@c8b87fae92ee0a0458e47b970ed892310323aa58 # v1.1.4
with:
command: go-test
coverage-threshold: ${{ inputs.coverage-threshold || needs.load-config.outputs.coverage-threshold }}
Expand All @@ -466,7 +466,7 @@ jobs:
- name: Check Go test coverage
if: ${{ !inputs.skip-tests }}
continue-on-error: true
uses: vladopajic/go-test-coverage@8cfd056d3bc5cc2bc64a840ded0c907aaae3dc46 # v2.18.7
uses: vladopajic/go-test-coverage@a93b868a4cbcbf18dc3781650fad241f0020e609 # v2.18.8
with:
config: ./.testcoverage.yml

Expand Down Expand Up @@ -519,7 +519,7 @@ jobs:
echo "GHCOMMON_SCRIPTS_DIR=$PWD/ghcommon-workflow-scripts/.github/workflows/scripts" >> "$GITHUB_ENV"

- name: Install Python dependencies
uses: jdfalk/ci-workflow-helpers-action@e64725c836a7ea33925f02a86d673d898ce4a713 # v1.1.4
uses: jdfalk/ci-workflow-helpers-action@c8b87fae92ee0a0458e47b970ed892310323aa58 # v1.1.4
with:
command: python-install

Expand All @@ -530,7 +530,7 @@ jobs:

- name: Test Python code
if: ${{ !inputs.skip-tests }}
uses: jdfalk/ci-workflow-helpers-action@e64725c836a7ea33925f02a86d673d898ce4a713 # v1.1.4
uses: jdfalk/ci-workflow-helpers-action@c8b87fae92ee0a0458e47b970ed892310323aa58 # v1.1.4
with:
command: python-run-tests

Expand Down Expand Up @@ -593,24 +593,24 @@ jobs:

- name: Format Rust code
if: ${{ !inputs.skip-linting }}
uses: jdfalk/ci-workflow-helpers-action@e64725c836a7ea33925f02a86d673d898ce4a713 # v1.1.4
uses: jdfalk/ci-workflow-helpers-action@c8b87fae92ee0a0458e47b970ed892310323aa58 # v1.1.4
with:
command: rust-format

- name: Lint Rust code
if: ${{ !inputs.skip-linting }}
uses: jdfalk/ci-workflow-helpers-action@e64725c836a7ea33925f02a86d673d898ce4a713 # v1.1.4
uses: jdfalk/ci-workflow-helpers-action@c8b87fae92ee0a0458e47b970ed892310323aa58 # v1.1.4
with:
command: rust-clippy

- name: Build Rust project
uses: jdfalk/ci-workflow-helpers-action@e64725c836a7ea33925f02a86d673d898ce4a713 # v1.1.4
uses: jdfalk/ci-workflow-helpers-action@c8b87fae92ee0a0458e47b970ed892310323aa58 # v1.1.4
with:
command: rust-build

- name: Test Rust project
if: ${{ !inputs.skip-tests }}
uses: jdfalk/ci-workflow-helpers-action@e64725c836a7ea33925f02a86d673d898ce4a713 # v1.1.4
uses: jdfalk/ci-workflow-helpers-action@c8b87fae92ee0a0458e47b970ed892310323aa58 # v1.1.4
with:
command: rust-test

Expand All @@ -619,7 +619,7 @@ jobs:
name: Cache npm (Frontend)
needs: detect-changes
if: needs.detect-changes.outputs.frontend-files == 'true'
uses: jdfalk/ghcommon/.github/workflows/reusable-advanced-cache.yml@cf2068996e1ecf737a6e2c269a9429f0764e76cd # v1.10.3+
uses: jdfalk/ghcommon/.github/workflows/reusable-advanced-cache.yml@1e106b5c7bc2e80beb0c6019e8ac263d41f2ed5f # v1.10.3+
with:
language: 'node'
cache-prefix: 'npm-frontend'
Expand All @@ -644,7 +644,7 @@ jobs:

- name: Get frontend working directory
id: frontend-dir
uses: jdfalk/get-frontend-config-action@9a5882d405edad2f4f48c3f584fee779d478f4a4 # v1.1.3
uses: jdfalk/get-frontend-config-action@517d41adc382a541ea13dead79a12a57a7172dcf # v1.1.3
with:
repository-config: ${{ env.REPOSITORY_CONFIG }}

Expand Down Expand Up @@ -681,14 +681,14 @@ jobs:
# No additional cache setup needed here.

- name: Install dependencies
uses: jdfalk/ci-workflow-helpers-action@e64725c836a7ea33925f02a86d673d898ce4a713 # v1.1.4
uses: jdfalk/ci-workflow-helpers-action@c8b87fae92ee0a0458e47b970ed892310323aa58 # v1.1.4
with:
command: frontend-install
frontend-working-dir: ${{ steps.frontend-dir.outputs.dir }}

- name: Lint frontend code
if: ${{ !inputs.skip-linting }}
uses: jdfalk/ci-workflow-helpers-action@e64725c836a7ea33925f02a86d673d898ce4a713 # v1.1.4
uses: jdfalk/ci-workflow-helpers-action@c8b87fae92ee0a0458e47b970ed892310323aa58 # v1.1.4
with:
command: frontend-run
frontend-working-dir: ${{ steps.frontend-dir.outputs.dir }}
Expand All @@ -697,7 +697,7 @@ jobs:
frontend-failure-message: '❌ Linting failed or not configured'

- name: Build frontend
uses: jdfalk/ci-workflow-helpers-action@e64725c836a7ea33925f02a86d673d898ce4a713 # v1.1.4
uses: jdfalk/ci-workflow-helpers-action@c8b87fae92ee0a0458e47b970ed892310323aa58 # v1.1.4
with:
command: frontend-run
frontend-working-dir: ${{ steps.frontend-dir.outputs.dir }}
Expand All @@ -707,7 +707,7 @@ jobs:

- name: Test frontend
if: ${{ !inputs.skip-tests }}
uses: jdfalk/ci-workflow-helpers-action@e64725c836a7ea33925f02a86d673d898ce4a713 # v1.1.4
uses: jdfalk/ci-workflow-helpers-action@c8b87fae92ee0a0458e47b970ed892310323aa58 # v1.1.4
with:
command: frontend-run
frontend-working-dir: ${{ steps.frontend-dir.outputs.dir }}
Expand All @@ -730,7 +730,7 @@ jobs:

- name: Run E2E tests
if: ${{ !inputs.skip-tests && !inputs.skip-e2e-tests }}
uses: jdfalk/ci-workflow-helpers-action@e64725c836a7ea33925f02a86d673d898ce4a713 # v1.1.4
uses: jdfalk/ci-workflow-helpers-action@c8b87fae92ee0a0458e47b970ed892310323aa58 # v1.1.4
with:
command: frontend-run
frontend-working-dir: ${{ steps.frontend-dir.outputs.dir }}
Expand Down Expand Up @@ -820,7 +820,7 @@ jobs:
} >> "$GITHUB_ENV"

- name: Generate summary
uses: jdfalk/ci-workflow-helpers-action@e64725c836a7ea33925f02a86d673d898ce4a713 # v1.1.4
uses: jdfalk/ci-workflow-helpers-action@c8b87fae92ee0a0458e47b970ed892310323aa58 # v1.1.4
with:
command: generate-ci-summary
env:
Expand All @@ -835,7 +835,7 @@ jobs:
JOB_DOCS: skipped

- name: Check overall status
uses: jdfalk/ci-workflow-helpers-action@e64725c836a7ea33925f02a86d673d898ce4a713 # v1.1.4
uses: jdfalk/ci-workflow-helpers-action@c8b87fae92ee0a0458e47b970ed892310323aa58 # v1.1.4
with:
command: check-ci-status
env:
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/reusable-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ jobs:
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Load repository configuration
id: load-config
uses: jdfalk/load-config-action@482b9f0e631b2325071cd9bf04c8fda4591044b0 # v1.1.3
uses: jdfalk/load-config-action@bb213cbf6b6e789bea8ad0787f2914760d00536b # v1.1.3
with:
config-file: .github/repository-config.yml
fail-on-missing: false
Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:
} >> "$GITHUB_OUTPUT"
- name: Detect project languages and generate matrices
id: detect
uses: jdfalk/detect-languages-action@e8b6061298420be7fd087ea148587fa61176137b # v1.1.5
uses: jdfalk/detect-languages-action@d5712363aae458b4bbb47bbb1780f02de2a03784 # v1.1.5
with:
skip-detection: ${{ inputs.skip-language-detection }}
build-target: ${{ inputs.build-target || 'all' }}
Expand Down Expand Up @@ -289,7 +289,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Generate protobuf
uses: jdfalk/gha-release-protobuf@afcb06673c957919bf28b9661b58038931588ea5 # v1.0.2+
uses: jdfalk/gha-release-protobuf@1c07a62621ea5bdaf7fd46643fd4e650c69de8d9 # v1.0.2+

# Go Build
build-go:
Expand Down Expand Up @@ -334,7 +334,7 @@ jobs:
private-key: ${{ secrets.CI_APP_PRIVATE_KEY }}

- name: Build Go
uses: jdfalk/gha-release-go@c7f72a3df997a97a1c9433893d4d25fc98f99c7e # v1.1.0
uses: jdfalk/gha-release-go@68295f41570b9f4fd264bb0a167a43b79ca30310 # v1.1.0
with:
protobuf-artifacts: ${{ needs.detect-languages.outputs.protobuf-needed }}
release-version: ${{ needs.detect-languages.outputs.release-tag }}
Expand All @@ -356,7 +356,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Build Python
uses: jdfalk/gha-release-python@120e1dfd3b9379841eb079869681fdacdab71198 # v1.0.2+
uses: jdfalk/gha-release-python@900b75fc7585c37cf448dbb7e30330f5ff891607 # v1.0.2+
with:
protobuf-artifacts: ${{ needs.detect-languages.outputs.protobuf-needed }}

Expand All @@ -373,7 +373,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Build Rust
uses: jdfalk/gha-release-rust@1a704db1fba3239c4ce8a543cd35defab6198ca2 # v1.0.2+
uses: jdfalk/gha-release-rust@5e0cfb831f58d00fc22e4dfe6d7e51a97eb6dbcd # v1.0.2+
with:
protobuf-artifacts: ${{ needs.detect-languages.outputs.protobuf-needed }}
release-version: ${{ needs.detect-languages.outputs.release-tag }}
Expand All @@ -391,7 +391,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Build Frontend
uses: jdfalk/gha-release-frontend@f77c3d10f7d3f6be435be9bbbd1446f5599f48aa # v1.0.2+
uses: jdfalk/gha-release-frontend@3fe7d567a6a6f25cadb618a3cb0abe311c765abb # v1.0.2+

# Docker Build
build-docker:
Expand All @@ -406,7 +406,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Build Docker
uses: jdfalk/gha-release-docker@9f854f0837efd3eac6647c93b86ca06d6b58cf6a # v1.0.2+
uses: jdfalk/gha-release-docker@2f0979263a455d556526d9f53589c3eb4d837136 # v1.0.2+
with:
registry: ${{ needs.detect-languages.outputs.registry }}
image-name: ${{ needs.detect-languages.outputs.image-name }}
Expand Down Expand Up @@ -489,7 +489,7 @@ jobs:
path: ./artifacts
- name: Package and organize release artifacts
id: package-artifacts
uses: jdfalk/package-assets-action@49725e715503b7021778d248f56fe50e001a68ed # v1.2.0
uses: jdfalk/package-assets-action@c1dc41c8fb6800606eee2714da4d7b807d55ecc4 # v1.2.0
with:
artifacts-dir: ./artifacts

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/reusable-security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
esac

- name: Initialize CodeQL
uses: github/codeql-action/init@95e58e9a2cdfd71adc6e0353d5c52f41a045d225 # v4.35.2
uses: github/codeql-action/init@e46ed2cbd01164d986452f91f178727624ae40d7 # v4.35.3
with:
languages: ${{ matrix.language }}
queries: security-extended,security-and-quality
Expand Down Expand Up @@ -129,14 +129,14 @@ jobs:
esac

- name: Start proxy for registry access
uses: github/codeql-action/start-proxy@95e58e9a2cdfd71adc6e0353d5c52f41a045d225 # v4.35.2
uses: github/codeql-action/start-proxy@e46ed2cbd01164d986452f91f178727624ae40d7 # v4.35.3

- name: Autobuild
if: steps.build-config.outputs.mode == 'autobuild'
uses: github/codeql-action/autobuild@95e58e9a2cdfd71adc6e0353d5c52f41a045d225 # v4.35.2
uses: github/codeql-action/autobuild@e46ed2cbd01164d986452f91f178727624ae40d7 # v4.35.3

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@95e58e9a2cdfd71adc6e0353d5c52f41a045d225 # v4.35.2
uses: github/codeql-action/analyze@e46ed2cbd01164d986452f91f178727624ae40d7 # v4.35.3
with:
category: '/language:${{ matrix.language }}'

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Initialize CodeQL
uses: github/codeql-action/init@95e58e9a2cdfd71adc6e0353d5c52f41a045d225 # v4.35.2
uses: github/codeql-action/init@e46ed2cbd01164d986452f91f178727624ae40d7 # v4.35.3
with:
languages: ${{ matrix.language }}
queries: security-extended,security-and-quality
Expand All @@ -94,10 +94,10 @@ jobs:
esac

- name: Autobuild
uses: github/codeql-action/autobuild@95e58e9a2cdfd71adc6e0353d5c52f41a045d225 # v4.35.2
uses: github/codeql-action/autobuild@e46ed2cbd01164d986452f91f178727624ae40d7 # v4.35.3

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@95e58e9a2cdfd71adc6e0353d5c52f41a045d225 # v4.35.2
uses: github/codeql-action/analyze@e46ed2cbd01164d986452f91f178727624ae40d7 # v4.35.3
with:
category: '/language:${{ matrix.language }}'

Expand Down
Loading
Loading