Skip to content

Commit 56e4d32

Browse files
authored
Merge branch 'main' into docs/badges
2 parents a5cf836 + 17bba40 commit 56e4d32

File tree

8 files changed

+29
-13
lines changed

8 files changed

+29
-13
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ on:
1111
- main
1212
schedule:
1313
- cron: "0 5 * * *" # runs every day at 5am UTC
14+
merge_group:
15+
types:
16+
- checks_requested
1417

1518
defaults:
1619
run:
@@ -104,7 +107,7 @@ jobs:
104107
- name: Run GoReleaser
105108
uses: goreleaser/goreleaser-action@286f3b13b1b49da4ac219696163fb8c1c93e1200 # v6.0.0
106109
with:
107-
version: v2.2.0 # renovate: datasource=github-tags depName=goreleaser/goreleaser
110+
version: v2.3.1 # renovate: datasource=github-tags depName=goreleaser/goreleaser
108111
args: release --clean
109112
env:
110113
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/codeql-analysis.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ on:
1010
- main
1111
schedule:
1212
- cron: "33 16 * * 3" # run every Wednesday at 16:33 UTC
13+
merge_group:
14+
types:
15+
- checks_requested
1316

1417
concurrency:
1518
group: ${{ github.ref_name }}-codeql
@@ -55,7 +58,7 @@ jobs:
5558

5659
# Initializes the CodeQL tools for scanning.
5760
- name: Initialize CodeQL
58-
uses: github/codeql-action/init@4dd16135b69a43b6c8efb853346f8437d92d3c93 # v3.26.6
61+
uses: github/codeql-action/init@8214744c546c1e5c8f03dde8fab3a7353211988d # v3.26.7
5962
with:
6063
languages: ${{ matrix.language }}
6164
build-mode: ${{ matrix.build-mode }}
@@ -67,6 +70,6 @@ jobs:
6770
# queries: security-extended,security-and-quality
6871

6972
- name: Perform CodeQL Analysis
70-
uses: github/codeql-action/analyze@4dd16135b69a43b6c8efb853346f8437d92d3c93 # v3.26.6
73+
uses: github/codeql-action/analyze@8214744c546c1e5c8f03dde8fab3a7353211988d # v3.26.7
7174
with:
7275
category: "/language:${{matrix.language}}"

.github/workflows/dependency-review.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ on:
33
pull_request:
44
branches:
55
- main
6+
merge_group:
7+
types:
8+
- checks_requested
69

710
concurrency:
811
group: ${{ github.ref_name }}-deps-review
@@ -18,6 +21,10 @@ jobs:
1821
contents: read # for actions/checkout
1922
pull-requests: write # for actions/dependency-review-action to post comments
2023
steps:
24+
- name: Skip on Merge Group
25+
run: exit 0 # Artifically flag as successful, as this is a required check for branch protection.
26+
if: github.event_name == 'merge_group'
27+
2128
- name: Checkout Repository
2229
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
2330

.github/workflows/lint.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ on:
44
pull_request:
55
branches:
66
- main
7+
merge_group:
8+
types:
9+
- checks_requested
710

811
defaults:
912
run:
@@ -18,7 +21,7 @@ permissions:
1821

1922
jobs:
2023
lint:
21-
name: Lint
24+
name: Go Lint
2225
runs-on: ubuntu-22.04
2326
steps:
2427
- name: Checkout Repository
@@ -32,7 +35,7 @@ jobs:
3235
- name: Lint Go
3336
uses: golangci/golangci-lint-action@aaa42aa0628b4ae2578232a66b541047968fac86 # v6.1.0
3437
with:
35-
version: v1.60.3 # renovate: datasource=github-tags depName=golangci/golangci-lint
38+
version: v1.61.0 # renovate: datasource=github-tags depName=golangci/golangci-lint
3639

3740
actionlint:
3841
name: Actionlint
@@ -42,7 +45,7 @@ jobs:
4245
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
4346

4447
- name: Lint Actions
45-
uses: reviewdog/action-actionlint@4f8f9963ca57a41e5fd5b538dd79dbfbd3e0b38a # v1.54.0
48+
uses: reviewdog/action-actionlint@05c9d7bef25a46caf572df3497afa7082fc111df # v1.55.0
4649
with:
4750
actionlint_flags: -shellcheck ""
4851

@@ -54,7 +57,7 @@ jobs:
5457
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
5558

5659
- name: Lint Markdown
57-
uses: DavidAnson/markdownlint-cli2-action@b4c9feab76d8025d1e83c653fa3990936df0e6c8 # v16.0.0
60+
uses: DavidAnson/markdownlint-cli2-action@db43aef879112c3119a410d69f66701e0d530809 # v17.0.0
5861
with:
5962
config: .markdownlint-cli2.yaml
6063
globs: "**/*.md"
@@ -67,4 +70,4 @@ jobs:
6770
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
6871

6972
- name: Lint YAML
70-
uses: reviewdog/action-yamllint@4e4ba96d03a0e12a0e71c29e5fef1db309d09201 # v1.18.0
73+
uses: reviewdog/action-yamllint@e09f07780388032a624e9eb44a23fd1bbb4052cc # v1.19.0

.github/workflows/scorecard.yml

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

5858
# Upload the results to GitHub's code scanning dashboard.
5959
- name: "Upload to code-scanning"
60-
uses: github/codeql-action/upload-sarif@4dd16135b69a43b6c8efb853346f8437d92d3c93 # v3.26.6
60+
uses: github/codeql-action/upload-sarif@8214744c546c1e5c8f03dde8fab3a7353211988d # v3.26.7
6161
with:
6262
sarif_file: results.sarif

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ repos:
2424
- id: detect-private-key
2525

2626
- repo: https://github.com/golangci/golangci-lint
27-
rev: v1.60.3
27+
rev: v1.61.0
2828
hooks:
2929
- id: golangci-lint-full
3030

3131
- repo: https://github.com/gitleaks/gitleaks
32-
rev: v8.18.4
32+
rev: v8.19.2
3333
hooks:
3434
- id: gitleaks
3535

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# renovate: datasource=github-tags depName=golangci/golangci-lint
2-
GOLANGCI_LINT_VERSION = v1.60.3
2+
GOLANGCI_LINT_VERSION = v1.61.0
33

44
test: unit-test test-integration test-integration-no-stream-block clean
55

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# syntax=docker/dockerfile:1.9
1+
# syntax=docker/dockerfile:1.10
22
FROM debian:12-slim
33

44
LABEL maintainer="NGINX Docker Maintainers <[email protected]>"

0 commit comments

Comments
 (0)