Skip to content
This repository was archived by the owner on Sep 22, 2025. It is now read-only.
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/dependabot-tidy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
fetch-depth: 0

- name: Set up Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version: 'stable'
check-latest: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
fetch-depth: 0
token: ${{ steps.generate_token.outputs.token }}
- name: Set up Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version: stable
- uses: actions/cache@v4
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/reusable-go-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
fetch-depth: ${{ inputs.run_code_analysis && 0 || 1 }}

- name: Setup Go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # pin@5.5.0
uses: actions/setup-go@c0137caad775660c0844396c52da96e560aba63d # pin@5.5.0
with:
go-version-file: "${{ inputs.module }}/go.mod"
cache: false # Using a separate cache step
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
fetch-depth: ${{ inputs.run_code_analysis && 0 || 1 }}

- name: Setup Go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # pin@5.5.0
uses: actions/setup-go@c0137caad775660c0844396c52da96e560aba63d # pin@5.5.0
with:
go-version-file: "${{ inputs.module }}/go.mod"
cache: false # Using a separate cache step
Expand Down Expand Up @@ -214,7 +214,7 @@ jobs:
fetch-depth: ${{ inputs.run_code_analysis && 0 || 1 }}

- name: Setup Go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # pin@5.5.0
uses: actions/setup-go@c0137caad775660c0844396c52da96e560aba63d # pin@5.5.0
with:
go-version-file: "${{ inputs.module }}/go.mod"
cache: false
Expand Down Expand Up @@ -246,7 +246,7 @@ jobs:
fetch-depth: 0 # CodeQL requires full history

- name: Setup Go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # pin@5.5.0
uses: actions/setup-go@c0137caad775660c0844396c52da96e560aba63d # pin@5.5.0
with:
go-version-file: "${{ inputs.module }}/go.mod"
cache: false
Expand Down Expand Up @@ -285,7 +285,7 @@ jobs:
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@192325c86100d080feab897ff886c34abd4c83a3 # pinv3.30.3
with:
category: "/language:go"
category: "/language:go/${{ inputs.module }}"

build:
name: "Build Image for ${{ inputs.module }}"
Expand All @@ -301,7 +301,7 @@ jobs:
fetch-depth: ${{ inputs.run_code_analysis && 0 || 1 }}

- name: Setup Go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # pin@5.5.0
uses: actions/setup-go@c0137caad775660c0844396c52da96e560aba63d # pin@5.5.0
with:
go-version-file: "${{ inputs.module }}/go.mod"
cache: false
Expand Down
Loading