Skip to content

Commit d2ee0be

Browse files
chore(deps): update github-actions deps
1 parent a9360f9 commit d2ee0be

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
- name: Setup Go
9696
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
9797
with:
98-
go-version: "~1.24"
98+
go-version: "~1.25.0"
9999

100100
- name: Log into Docker.io
101101
uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0
@@ -111,7 +111,7 @@ jobs:
111111
password: ${{ secrets.GITHUB_TOKEN }}
112112

113113
- name: Run GoReleaser
114-
uses: goreleaser/goreleaser-action@9c156ee8a17a598857849441385a2041ef570552 # v6.3.0
114+
uses: goreleaser/goreleaser-action@e435ccd777264be153ace6237001ef4d979d3a7a # v6.4.0
115115
with:
116116
distribution: goreleaser-pro
117117
version: ${{ env.GORELEASER_PRO_VERSION }}

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ jobs:
5555
- name: Setup Go
5656
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
5757
with:
58-
go-version: "~1.24"
58+
go-version: "~1.25.0"
5959

6060
- name: Check GoReleaser
61-
uses: goreleaser/goreleaser-action@9c156ee8a17a598857849441385a2041ef570552 # v6.3.0
61+
uses: goreleaser/goreleaser-action@e435ccd777264be153ace6237001ef4d979d3a7a # v6.4.0
6262
with:
6363
distribution: goreleaser-pro
6464
version: ${{ env.GORELEASER_PRO_VERSION }}
@@ -68,7 +68,7 @@ jobs:
6868
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6969

7070
- name: Run GoReleaser
71-
uses: goreleaser/goreleaser-action@9c156ee8a17a598857849441385a2041ef570552 # v6.3.0
71+
uses: goreleaser/goreleaser-action@e435ccd777264be153ace6237001ef4d979d3a7a # v6.4.0
7272
with:
7373
distribution: goreleaser-pro
7474
version: ${{ env.GORELEASER_PRO_VERSION }}

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
- name: Setup Go
8787
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
8888
with:
89-
go-version: "~1.24"
89+
go-version: "~1.25.0"
9090
check-latest: true
9191

9292
- name: Create artifacts directory to store build artifacts
@@ -141,7 +141,7 @@ jobs:
141141
# otelcol-contrib is built in a separate stage
142142
- name: Build ${{ inputs.distribution }}
143143
if: inputs.distribution == 'otelcol-contrib' && inputs.nightly != true
144-
uses: goreleaser/goreleaser-action@9c156ee8a17a598857849441385a2041ef570552 # v6.3.0
144+
uses: goreleaser/goreleaser-action@e435ccd777264be153ace6237001ef4d979d3a7a # v6.4.0
145145
with:
146146
distribution: goreleaser-pro
147147
version: ${{ env.GORELEASER_PRO_VERSION }}
@@ -164,7 +164,7 @@ jobs:
164164
run: ls -laR distributions/otelcol-contrib/artifacts
165165

166166
- name: Run GoReleaser for ${{ inputs.distribution }}
167-
uses: goreleaser/goreleaser-action@9c156ee8a17a598857849441385a2041ef570552 # v6.3.0
167+
uses: goreleaser/goreleaser-action@e435ccd777264be153ace6237001ef4d979d3a7a # v6.4.0
168168
with:
169169
distribution: goreleaser-pro
170170
version: ${{ env.GORELEASER_PRO_VERSION }}

.github/workflows/base-release.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
9393
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
9494
with:
95-
go-version: "~1.24"
95+
go-version: "~1.25.0"
9696
check-latest: true
9797

9898
- name: Set nightly enabled
@@ -127,7 +127,7 @@ jobs:
127127
# otelcol-contrib is built in a separate stage
128128
- name: Build ${{ inputs.distribution }}
129129
if: inputs.distribution == 'otelcol-contrib'
130-
uses: goreleaser/goreleaser-action@9c156ee8a17a598857849441385a2041ef570552 # v6.3.0
130+
uses: goreleaser/goreleaser-action@e435ccd777264be153ace6237001ef4d979d3a7a # v6.4.0
131131
with:
132132
distribution: goreleaser-pro
133133
version: ${{ env.GORELEASER_PRO_VERSION }}
@@ -154,7 +154,7 @@ jobs:
154154
shell: bash
155155
run: ls -laR distributions/otelcol-contrib/artifacts
156156

157-
- uses: goreleaser/goreleaser-action@9c156ee8a17a598857849441385a2041ef570552 # v6.3.0
157+
- uses: goreleaser/goreleaser-action@e435ccd777264be153ace6237001ef4d979d3a7a # v6.4.0
158158
with:
159159
distribution: goreleaser-pro
160160
version: ${{ env.GORELEASER_PRO_VERSION }}
@@ -213,7 +213,7 @@ jobs:
213213
214214
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
215215
with:
216-
go-version: "~1.24"
216+
go-version: "~1.25.0"
217217
check-latest: true
218218

219219
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
@@ -254,7 +254,7 @@ jobs:
254254
username: ${{ github.repository_owner }}
255255
password: ${{ secrets.GITHUB_TOKEN }}
256256

257-
- uses: goreleaser/goreleaser-action@9c156ee8a17a598857849441385a2041ef570552 # v6.3.0
257+
- uses: goreleaser/goreleaser-action@e435ccd777264be153ace6237001ef4d979d3a7a # v6.4.0
258258
with:
259259
distribution: goreleaser-pro
260260
version: ${{ env.GORELEASER_PRO_VERSION }}

.github/workflows/changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
fetch-depth: 0
3535
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
3636
with:
37-
go-version: "~1.24"
37+
go-version: "~1.25.0"
3838
cache: false
3939
- name: Cache Go
4040
id: go-cache

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Setup Go
3434
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
3535
with:
36-
go-version: "~1.24"
36+
go-version: "~1.25.0"
3737
check-latest: true
3838

3939
- name: Tidy go.mod files

0 commit comments

Comments
 (0)