Skip to content

Commit 38ca3d1

Browse files
authored
Merge branch 'master' into snyk-fix-cdc1813a842868eceb3c5cf844647f2a
2 parents c0a224a + bb60fdc commit 38ca3d1

459 files changed

Lines changed: 22983 additions & 3907 deletions

File tree

Some content is hidden

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

.github/copilot-instructions.md

Lines changed: 280 additions & 54 deletions
Large diffs are not rendered by default.

.github/labeler.yaml

Lines changed: 43 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,60 @@
11
area/go:
2-
- cmd/*
3-
- cmd/**/*
4-
- pkg/*
5-
- pkg/**/*
2+
- changed-files:
3+
- any-glob-to-any-file:
4+
- 'cmd/*'
5+
- 'cmd/**/*'
6+
- 'pkg/*'
7+
- 'pkg/**/*'
68

79
area/web:
8-
- web/*
9-
- web/**/*
10+
- changed-files:
11+
- any-glob-to-any-file:
12+
- 'web/*'
13+
- 'web/**/*'
1014

1115
area/build:
12-
- hack/*
13-
- .github/*
14-
- .github/**/*
15-
- Makefile
16-
- local/*
16+
- changed-files:
17+
- any-glob-to-any-file:
18+
- 'hack/*'
19+
- '.github/*'
20+
- '.github/**/*'
21+
- 'Makefile'
22+
- 'local/*'
1723

1824
area/manifests:
19-
- manifests/**/*
25+
- changed-files:
26+
- any-glob-to-any-file:
27+
- 'manifests/**/*'
2028

2129
area/docs:
22-
- docs/*
23-
- docs/**/*
24-
- README.md
25-
- CONTRIBUTING.md
26-
- RELEASES.md
30+
- changed-files:
31+
- any-glob-to-any-file:
32+
- 'docs/*'
33+
- 'docs/**/*'
34+
- 'README.md'
35+
- 'CONTRIBUTING.md'
36+
- 'RELEASES.md'
2737

2838
area/examples:
29-
- examples/*
30-
- examples/**/*
39+
- changed-files:
40+
- any-glob-to-any-file:
41+
- 'examples/*'
42+
- 'examples/**/*'
3143

3244
area/tool:
33-
- tool/*
34-
- tool/**/*
45+
- changed-files:
46+
- any-glob-to-any-file:
47+
- 'tool/*'
48+
- 'tool/**/*'
3549

3650
area/pipedv1:
37-
- pkg/app/pipedv1/**/*
38-
- pkg/configv1/*
39-
- pkg/configv1/**/*
51+
- changed-files:
52+
- any-glob-to-any-file:
53+
- 'pkg/app/pipedv1/**/*'
54+
- 'pkg/configv1/*'
55+
- 'pkg/configv1/**/*'
4056

4157
area/plugin-sdk:
42-
- pkg/plugin/sdk/**/*
58+
- changed-files:
59+
- any-glob-to-any-file:
60+
- 'pkg/plugin/sdk/**/*'

.github/workflows/build.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ permissions:
2121

2222
env:
2323
GO_VERSION: 1.26.2
24-
NODE_VERSION: 20.19.0
24+
NODE_VERSION: 24.10.0
2525
HELM_VERSION: 3.8.2
2626

2727
jobs:
2828
go:
2929
runs-on: ubuntu-24.04
3030
steps:
31-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
32-
- uses: actions/setup-go@v3
31+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
32+
- uses: actions/setup-go@v5
3333
with:
3434
go-version: ${{ env.GO_VERSION }}
3535
cache: true
@@ -39,8 +39,8 @@ jobs:
3939
plugin:
4040
runs-on: ubuntu-24.04
4141
steps:
42-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
43-
- uses: actions/setup-go@v3
42+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
43+
- uses: actions/setup-go@v5
4444
with:
4545
go-version: ${{ env.GO_VERSION }}
4646
- name: Build plugin
@@ -49,14 +49,14 @@ jobs:
4949
web:
5050
runs-on: ubuntu-24.04
5151
steps:
52-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
53-
- uses: actions/setup-node@v3
52+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
53+
- uses: actions/setup-node@v7
5454
with:
5555
node-version: ${{ env.NODE_VERSION }}
5656
- name: Get yarn cache directory path
5757
id: yarn-cache-dir-path
5858
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
59-
- uses: actions/cache@v4
59+
- uses: actions/cache@v6
6060
id: yarn-cache
6161
with:
6262
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -71,11 +71,11 @@ jobs:
7171
chart:
7272
runs-on: ubuntu-24.04
7373
steps:
74-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
74+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
7575
with:
7676
fetch-depth: 0
7777
- name: Install helm
78-
uses: azure/setup-helm@v4
78+
uses: azure/setup-helm@9bc31f4ebc9c6b171d7bfbaa5d006ae7abdb4310 # v5.0.1
7979
with:
8080
version: ${{ env.HELM_VERSION }}
8181
- name: Package helm charts

.github/workflows/build_tool.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
runs-on: ${{ matrix.platform.runner }}
4040
timeout-minutes: 15
4141
steps:
42-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
42+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
4343
with:
4444
fetch-depth: 0
4545
- name: Determine version

.github/workflows/cherry_pick.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
tool:
1616
runs-on: ubuntu-24.04
1717
steps:
18-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
18+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
1919
with:
2020
fetch-depth: 0
2121
- name: make a cherry-pick PR

.github/workflows/codeql-analysis.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
language: [ 'go', 'javascript' ]
1616

1717
steps:
18-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
18+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
1919
- uses: github/codeql-action/init@v3
2020
with:
2121
languages: ${{ matrix.language }}

.github/workflows/first-time-contributor.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Welcome first-time contributor
15-
uses: actions/github-script@f28e40c7f34bde8b3046d885e986cb6290c5673b # v7
15+
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
1616
with:
1717
script: |
1818
const owner = context.repo.owner;

.github/workflows/gen.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-24.04
1717
steps:
1818
- name: Checkout repository
19-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
19+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
2020
- name: Generate code
2121
# NOTE: Keep this container image as same as defined in Makefile
2222
uses: docker://ghcr.io/pipe-cd/codegen@sha256:8b17498a7cfb58fbaf403ec7cab01a740238aaee43d030e65a40abb710f9e68a # v0.56.0-30-g0d71fd0

.github/workflows/labeler.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
pull-requests: write
1111
runs-on: ubuntu-24.04
1212
steps:
13-
- uses: actions/labeler@v4
13+
- uses: actions/labeler@v7
1414
with:
1515
repo-token: "${{ secrets.GITHUB_TOKEN }}"
1616
sync-labels: true

.github/workflows/lint.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ concurrency:
1515

1616
env:
1717
GO_VERSION: 1.26.2
18-
NODE_VERSION: 20.19.0
18+
NODE_VERSION: 24.10.0
1919
GOLANGCI_LINT_VERSION: v2.11.4
2020
HELM_VERSION: 3.17.3
2121

@@ -25,7 +25,7 @@ jobs:
2525
outputs:
2626
modules: ${{ steps.list-go-modules.outputs.modules }}
2727
steps:
28-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
28+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
2929
- name: List go modules
3030
id: list-go-modules
3131
run: |
@@ -39,9 +39,9 @@ jobs:
3939
matrix:
4040
module: ${{ fromJSON(needs.list-go-modules.outputs.modules) }}
4141
steps:
42-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
42+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
4343
- name: golangci-lint
44-
uses: reviewdog/action-golangci-lint@f9bba13753278f6a73b27a56a3ffb1bfda90ed71 #v2.8.0
44+
uses: reviewdog/action-golangci-lint@c76cceaaab89abe74e649d2e34c6c9adc26662d2 #v2.10.0
4545
with:
4646
workdir: ${{ matrix.module }}
4747
go_version: ${{ env.GO_VERSION }}
@@ -66,14 +66,14 @@ jobs:
6666
web:
6767
runs-on: ubuntu-24.04
6868
steps:
69-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
70-
- uses: actions/setup-node@v3
69+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
70+
- uses: actions/setup-node@v7
7171
with:
7272
node-version: ${{ env.NODE_VERSION }}
7373
- name: Get yarn cache directory path
7474
id: yarn-cache-dir-path
7575
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
76-
- uses: actions/cache@v4
76+
- uses: actions/cache@v6
7777
id: yarn-cache
7878
with:
7979
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -88,10 +88,10 @@ jobs:
8888
runs-on: ubuntu-24.04
8989
steps:
9090
- name: Checkout repository
91-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
91+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
9292

9393
- name: Set up Helm
94-
uses: azure/setup-helm@v4
94+
uses: azure/setup-helm@9bc31f4ebc9c6b171d7bfbaa5d006ae7abdb4310 # v5.0.1
9595
with:
9696
version: ${{ env.HELM_VERSION }}
9797

@@ -106,7 +106,7 @@ jobs:
106106
matrix:
107107
module: ${{ fromJSON(needs.list-go-modules.outputs.modules) }}
108108
steps:
109-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
109+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
110110
- uses: actions/setup-go@v5
111111
with:
112112
go-version: ${{ env.GO_VERSION }}

0 commit comments

Comments
 (0)