Skip to content

Commit 1f48580

Browse files
authored
Merge branch 'main' into expose-host-ports-start
2 parents 0d2c28d + ec51c67 commit 1f48580

File tree

370 files changed

+11290
-9447
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

370 files changed

+11290
-9447
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// README at: https://github.com/devcontainers/templates/tree/main/src/go
33
{
44
"name": "Go",
5-
"image": "mcr.microsoft.com/devcontainers/go:1.23-bookworm",
5+
"image": "mcr.microsoft.com/devcontainers/go:1.24-trixie",
66

77
// Features to add to the dev container. More info: https://containers.dev/features.
88
// "features": {},

.github/dependabot.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ updates:
5353
- /modules/mssql
5454
- /modules/mysql
5555
- /modules/nats
56+
- /modules/nebulagraph
5657
- /modules/neo4j
5758
- /modules/ollama
5859
- /modules/openfga

.github/workflows/ci-lint-go.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2525

2626
- name: Set up Go
27-
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
27+
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
2828
with:
2929
go-version-file: "${{ inputs.project-directory == '' && '.' || inputs.project-directory }}/go.mod"
3030
cache-dependency-path: "${{ inputs.project-directory == '' && '.' || inputs.project-directory }}/go.sum"
@@ -45,6 +45,12 @@ jobs:
4545
make generate
4646
git --no-pager diff && [[ 0 -eq $(git status --porcelain | wc -l) ]]
4747
48+
- name: generate project files by modulegen
49+
if: ${{ inputs.project-directory == 'modulegen' }}
50+
working-directory: ./${{ inputs.project-directory }}
51+
shell: bash
52+
run: go run . refresh
53+
4854
- name: modTidy
4955
working-directory: ./${{ inputs.project-directory }}
5056
shell: bash

.github/workflows/ci-test-go.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
fetch-depth: 0
6767

6868
- name: Set up Go
69-
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
69+
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
7070
with:
7171
go-version: '${{ inputs.go-version }}'
7272
cache-dependency-path: '${{ inputs.project-directory }}/go.sum'
@@ -118,7 +118,7 @@ jobs:
118118
- name: Decide if Sonar must be run
119119
if: ${{ matrix.platform == 'ubuntu-latest' }}
120120
run: |
121-
if [[ "1.23.x" == "${{ inputs.go-version }}" ]] && \
121+
if [[ "1.24.x" == "${{ inputs.go-version }}" ]] && \
122122
[[ "true" != "${{ inputs.rootless-docker }}" ]] && \
123123
[[ "true" != "${{ inputs.testcontainers-cloud }}" ]] && \
124124
[[ "true" != "${{ inputs.ryuk-disabled }}" ]] && \

.github/workflows/ci-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
ref: ${{ github.event.client_payload.pull_request.head.ref }}
3232

3333
- name: Set up Go
34-
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5
34+
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v5
3535
with:
3636
go-version-file: go.mod
3737
id: go

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
- id: changed-files
2424
name: Get changed files
25-
uses: tj-actions/changed-files@823fcebdb31bb35fdf2229d9f769b400309430d0 # v46.0.3
25+
uses: tj-actions/changed-files@24d32ffd492484c1d75e0c0b894501ddb9d30d62 # v47.0.0
2626

2727
- id: set-modified-modules
2828
name: Set all modified modules
@@ -61,7 +61,7 @@ jobs:
6161
# We don't want to fail the build the soonest but identify which modules passed and failed.
6262
fail-fast: false
6363
matrix:
64-
go-version: [1.23.x, 1.24.x]
64+
go-version: [1.24.x, 1.25.x]
6565
module: ${{ fromJSON(needs.detect-modules.outputs.modules) }}
6666
permissions:
6767
contents: read # for actions/checkout to fetch code
@@ -88,7 +88,7 @@ jobs:
8888
# We don't want to fail the build the soonest but identify which modules passed and failed.
8989
fail-fast: false
9090
matrix:
91-
go-version: [1.23.x, 1.24.x]
91+
go-version: [1.24.x, 1.25.x]
9292
uses: ./.github/workflows/ci-test-go.yml
9393
with:
9494
go-version: ${{ matrix.go-version }}
@@ -109,7 +109,7 @@ jobs:
109109
name: "Test with reaper off"
110110
strategy:
111111
matrix:
112-
go-version: [1.23.x, 1.24.x]
112+
go-version: [1.24.x, 1.25.x]
113113
uses: ./.github/workflows/ci-test-go.yml
114114
with:
115115
go-version: ${{ matrix.go-version }}
@@ -130,7 +130,7 @@ jobs:
130130
name: "Test with Rootless Docker"
131131
strategy:
132132
matrix:
133-
go-version: [1.23.x, 1.24.x]
133+
go-version: [1.24.x, 1.25.x]
134134
uses: ./.github/workflows/ci-test-go.yml
135135
with:
136136
go-version: ${{ matrix.go-version }}

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353

5454
# Initializes the CodeQL tools for scanning.
5555
- name: Initialize CodeQL
56-
uses: github/codeql-action/init@d6bbdef45e766d081b84a2def353b0055f728d3e # v3.29.3
56+
uses: github/codeql-action/init@192325c86100d080feab897ff886c34abd4c83a3 # v3.30.3
5757
with:
5858
languages: ${{ matrix.language }}
5959
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -67,7 +67,7 @@ jobs:
6767
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
6868
# If this step fails, then you should remove it and run the build manually (see below)
6969
- name: Autobuild
70-
uses: github/codeql-action/autobuild@d6bbdef45e766d081b84a2def353b0055f728d3e # v3.29.3
70+
uses: github/codeql-action/autobuild@192325c86100d080feab897ff886c34abd4c83a3 # v3.30.3
7171

7272
# ℹ️ Command-line programs to run using the OS shell.
7373
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -80,6 +80,6 @@ jobs:
8080
# ./location_of_script_within_repo/buildscript.sh
8181

8282
- name: Perform CodeQL Analysis
83-
uses: github/codeql-action/analyze@d6bbdef45e766d081b84a2def353b0055f728d3e # v3.29.3
83+
uses: github/codeql-action/analyze@192325c86100d080feab897ff886c34abd4c83a3 # v3.30.3
8484
with:
8585
category: "/language:${{matrix.language}}"

.github/workflows/conventions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
name: Validate PR title follows Conventional Commits
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: amannn/action-semantic-pull-request@0723387faaf9b38adef4775cd42cfd5155ed6017 # v5
19+
- uses: amannn/action-semantic-pull-request@48f256284bd46cdaab1048c3721360e808335d50 # v6
2020
env:
2121
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2222
with:

.github/workflows/docker-projects-latest.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2626

2727
- name: Set up Go
28-
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
28+
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
2929
with:
3030
go-version-file: 'go.mod'
3131
cache-dependency-path: 'go.sum'
@@ -67,7 +67,7 @@ jobs:
6767
- name: Notify to Slack on failures
6868
if: failure()
6969
id: slack
70-
uses: slackapi/slack-github-action@485a9d42d3a73031f12ec201c457e2162c45d02d # v2.0.0
70+
uses: slackapi/slack-github-action@91efab103c0de0a537f72a35f6b8cda0ee76bf0a # v2.1.1
7171
with:
7272
payload-templated: true
7373
payload-file-path: "./payload-slack-content.json"
@@ -91,7 +91,7 @@ jobs:
9191
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
9292

9393
- name: Set up Go
94-
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
94+
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
9595
with:
9696
go-version-file: 'modules/compose/go.mod'
9797
cache-dependency-path: 'modules/compose/go.sum'
@@ -127,7 +127,7 @@ jobs:
127127
- name: Notify to Slack on failures
128128
if: failure()
129129
id: slack
130-
uses: slackapi/slack-github-action@485a9d42d3a73031f12ec201c457e2162c45d02d #v2.0.0
130+
uses: slackapi/slack-github-action@91efab103c0de0a537f72a35f6b8cda0ee76bf0a #v2.1.1
131131
with:
132132
payload-templated: true
133133
payload-file-path: "./payload-slack-content.json"

.github/workflows/scorecards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,6 @@ jobs:
5151

5252
# required for Code scanning alerts
5353
- name: "Upload SARIF results to code scanning"
54-
uses: github/codeql-action/upload-sarif@d6bbdef45e766d081b84a2def353b0055f728d3e # v3.29.3
54+
uses: github/codeql-action/upload-sarif@192325c86100d080feab897ff886c34abd4c83a3 # v3.30.3
5555
with:
5656
sarif_file: results.sarif

0 commit comments

Comments
 (0)