Skip to content

Commit c9466ba

Browse files
committed
Merge branch 'main' of github.com:open-telemetry/opentelemetry-collector-releases into release-ebpf-profiler-distro
2 parents 5806649 + c3ac1d7 commit c9466ba

File tree

17 files changed

+33
-32
lines changed

17 files changed

+33
-32
lines changed

.github/workflows/base-binary-release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
steps:
3838
- name: Checkout Releases Repo
39-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
39+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
4040
with:
4141
fetch-depth: 0
4242

@@ -74,7 +74,7 @@ jobs:
7474
git push origin "${tag}"
7575
7676
- name: Checkout Collector dependency repo
77-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
77+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
7878
with:
7979
fetch-depth: 0
8080
repository: ${{ inputs.collector-dependency }}

.github/workflows/base-ci-binary.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ jobs:
3131
runs-on: ${{ inputs.runner_os }}
3232
steps:
3333
- name: Checkout Releases Repo
34-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
34+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
3535
with:
3636
fetch-depth: 0
3737

3838
- name: Checkout Collector dependency repo
39-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
39+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
4040
with:
4141
fetch-depth: 0
4242
repository: ${{ inputs.collector-dependency }}

.github/workflows/base-ci-goreleaser.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969

7070
steps:
7171
- name: Checkout
72-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
72+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
7373
with:
7474
fetch-depth: 0
7575

@@ -121,7 +121,7 @@ jobs:
121121

122122
- name: "[Nightly] Download built otelcol-contrib artifact from contrib repo"
123123
if: inputs.distribution == 'otelcol-contrib' && inputs.nightly == true && matrix.GOARCH == 'amd64' && matrix.GOOS == 'linux'
124-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
124+
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
125125
with:
126126
name: collector-binaries-linux-amd64
127127
repository: open-telemetry/opentelemetry-collector-contrib
@@ -271,15 +271,15 @@ jobs:
271271
runs-on: ${{ inputs.runner_os }}
272272
steps:
273273
- name: Checkout
274-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
274+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
275275

276276
- name: Setup QEMU
277277
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3.6.0
278278
with:
279279
platforms: arm64,ppc64le,linux/arm/v7,s390x,riscv64
280280

281281
- name: Download container image artifact
282-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
282+
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
283283
with:
284284
name: ${{ inputs.distribution }}-image-${{ needs.check-goreleaser.outputs.version }}-${{ matrix.GOOS }}-${{ matrix.GOARCH }}
285285

.github/workflows/base-package-tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ jobs:
2828
type: ${{ fromJSON(inputs.type) }}
2929
steps:
3030
- name: Checkout
31-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
31+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
3232

3333
- name: Download built artifacts
34-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
34+
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
3535
with:
3636
name: linux-packages
3737

.github/workflows/base-release.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
packages: write
5050

5151
steps:
52-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
52+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
5353
with:
5454
fetch-depth: 0
5555

@@ -179,7 +179,7 @@ jobs:
179179
contents: write
180180

181181
steps:
182-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
182+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
183183
with:
184184
fetch-depth: 0
185185

@@ -210,21 +210,21 @@ jobs:
210210
go-version: "~1.24"
211211
check-latest: true
212212

213-
- uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
213+
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
214214
if: runner.os == 'Windows'
215215
with:
216216
pattern: artifacts-${{ inputs.distribution }}-windows-*
217217
path: distributions/${{ inputs.distribution }}/dist
218218
merge-multiple: true
219219

220-
- uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
220+
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
221221
if: runner.os != 'Windows'
222222
with:
223223
pattern: artifacts-${{ inputs.distribution }}-darwin-*
224224
path: distributions/${{ inputs.distribution }}/dist
225225
merge-multiple: true
226226

227-
- uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
227+
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
228228
if: runner.os != 'Windows'
229229
with:
230230
pattern: artifacts-${{ inputs.distribution }}-linux-*

.github/workflows/changelog.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
PR_HEAD: ${{ github.event.pull_request.head.sha }}
3030

3131
steps:
32-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
32+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
3333
with:
3434
fetch-depth: 0
3535
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
@@ -39,7 +39,7 @@ jobs:
3939
- name: Cache Go
4040
id: go-cache
4141
timeout-minutes: 5
42-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3
42+
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
4343
with:
4444
path: |
4545
~/go/bin
@@ -86,7 +86,7 @@ jobs:
8686
- name: Link Checker
8787
if: ${{ !contains(github.event.pull_request.labels.*.name, 'dependencies') && !contains(github.event.pull_request.labels.*.name, 'Skip Changelog') && !contains(github.event.pull_request.title, '[chore]')}}
8888
id: lychee
89-
uses: lycheeverse/lychee-action@82202e5e9c2f4ef1a55a3d02563e1cb6041e5332 # v2.4.1
89+
uses: lycheeverse/lychee-action@5c4ee84814c983aa7164eaee476f014e53ff3963 # v2.5.0
9090
with:
9191
args: "--verbose --no-progress ./changelog_preview.md --config .github/lychee.toml"
9292
failIfEmpty: false

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- otelcol-ebpf-profiler
2727
steps:
2828
- name: Checkout
29-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
29+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
3030
with:
3131
fetch-depth: 0
3232

.github/workflows/fossa.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
fossa:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
15+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
1616

1717
- uses: fossas/fossa-action@3ebcea1862c6ffbd5cf1b4d0bd6b3fe7bd6f2cac # v1.7.0
1818
with:

.github/workflows/msi-tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
type: ${{ fromJSON(inputs.type) }}
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
22+
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
2323

2424
- name: Download built artifacts
25-
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
25+
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
2626
with:
2727
name: msi-packages
2828

.github/workflows/nightly-release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e # v2.0.6
17+
- uses: actions/create-github-app-token@a8d616148505b5069dccd32f177bb87d7f39123b # v2.1.1
1818
id: otelbot-token
1919
with:
2020
app-id: ${{ vars.OTELBOT_COLLECTOR_RELEASES_APP_ID }}
@@ -34,7 +34,7 @@ jobs:
3434
echo "name=${{ steps.otelbot-token.outputs.app-slug }}[bot]" >> "$GITHUB_OUTPUT"
3535
echo "email=${{ steps.get-user-id.outputs.user-id }}+${{ steps.otelbot-token.outputs.app-slug }}[bot]@users.noreply.github.com>" >> "$GITHUB_OUTPUT"
3636
37-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
37+
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
3838
with:
3939
fetch-depth: 0
4040
token: ${{ steps.otelbot-token.outputs.token }}

0 commit comments

Comments
 (0)