Skip to content

Commit dd05598

Browse files
chore(deps): bump the gh-actions-packages group across 3 directories with 15 updates (#4411)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Dario Castañé <dario.castane@datadoghq.com>
1 parent f49f670 commit dd05598

26 files changed

+113
-113
lines changed

.github/actions/dd-ci-upload/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ runs:
3030

3131
- name: Datadog CI CLI cache
3232
id: dd-ci-cli-cache
33-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
33+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
3434
with:
3535
path: ./datadog-ci
3636
key: datadog-ci-cli-${{ env.DD_CI_CLI_BUILD }}

.github/actions/setup-go/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ inputs:
1313
runs:
1414
using: "composite"
1515
steps:
16-
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
16+
- uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
1717
with:
1818
go-version: ${{ inputs.go-version }}
1919
cache: true
2020
check-latest: true
2121

2222
- name: Cache tools
2323
id: cache-tools
24-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
24+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
2525
with:
2626
path: ${{ inputs.tools-bin }}
2727
key: ${{ runner.os }}-go-${{ inputs.go-version }}-tools-${{ inputs.tools-dir }}-${{ inputs.tools-bin}}-${{ hashFiles('**/go.mod', '**/go.sum') }}

.github/workflows/api-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
check-api-stability:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
14+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1515

1616
- name: Setup Go and development tools
1717
uses: ./.github/actions/setup-go

.github/workflows/appsec.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
key: ${{ steps.cfg.outputs.key }}
7373
path: ${{ steps.cfg.outputs.path }}
7474
steps:
75-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
75+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
7676
with:
7777
ref: ${{ inputs.ref || github.ref }}
7878

@@ -82,14 +82,14 @@ jobs:
8282
echo "key=go-pkg-mod-${{ hashFiles('**/go.sum') }}" >> "$GITHUB_OUTPUT"
8383
echo "path=go_pkg_mod_cache" >> "$GITHUB_OUTPUT"
8484
85-
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
85+
- uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
8686
with:
8787
go-version: stable
8888
cache: false
8989

9090
- name: Cache Go modules
9191
id: cache
92-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
92+
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
9393
with:
9494
path: ${{ steps.cfg.outputs.path }}
9595
key: ${{ steps.cfg.outputs.key }}
@@ -112,20 +112,20 @@ jobs:
112112
go-version: [ "1.26", "1.25" ]
113113
fail-fast: true # saving some CI time - macos runners are too long to get
114114
steps:
115-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
115+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
116116
with:
117117
ref: ${{ inputs.ref || github.ref }}
118118

119119
- name: Restore Go modules cache
120-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
120+
uses: actions/cache/restore@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
121121
with:
122122
path: ${{ needs.go-mod-caching.outputs.path }}
123123
key: ${{ needs.go-mod-caching.outputs.key }}
124124
restore-keys: go-pkg-mod-
125125
enableCrossOsArchive: true
126126
fail-on-cache-miss: true
127127

128-
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
128+
- uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
129129
with:
130130
go-version: ${{ matrix.go-version }}
131131
cache: false # we manage the caching ourselves
@@ -216,20 +216,20 @@ jobs:
216216
matrix:
217217
runs-on: [ macos-latest, windows-latest, ubuntu-latest-16-cores ]
218218
steps:
219-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
219+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
220220
with:
221221
ref: ${{ inputs.ref || github.ref }}
222222

223223
- name: Restore Go modules cache
224-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
224+
uses: actions/cache/restore@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
225225
with:
226226
path: ${{ needs.go-mod-caching.outputs.path }}
227227
key: ${{ needs.go-mod-caching.outputs.key }}
228228
restore-keys: go-pkg-mod-
229229
enableCrossOsArchive: true
230230
fail-on-cache-miss: true
231231

232-
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
232+
- uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
233233
with:
234234
go-version: stable
235235
cache: false # we manage the caching ourselves
@@ -301,12 +301,12 @@ jobs:
301301

302302
fail-fast: false
303303
steps:
304-
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
304+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
305305
with:
306306
ref: ${{ inputs.ref || github.ref }}
307307

308308
- name: Restore Go modules cache
309-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
309+
uses: actions/cache/restore@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
310310
with:
311311
path: ${{ needs.go-mod-caching.outputs.path }}
312312
key: ${{ needs.go-mod-caching.outputs.key }}

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ jobs:
2929

3030
steps:
3131
- name: Checkout repository
32-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
32+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3333
with:
3434
ref: ${{ inputs.ref || github.ref }}
3535

3636
# Initializes the CodeQL tools for scanning.
3737
- name: Initialize CodeQL
38-
uses: github/codeql-action/init@fdbfb4d2750291e159f0156def62b853c2798ca2 # v4.31.5
38+
uses: github/codeql-action/init@45cbd0c69e560cd9e7cd7f8c32362050c9b7ded2 # v4.32.2
3939
with:
4040
languages: ${{ matrix.language }}
4141
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -46,7 +46,7 @@ jobs:
4646
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
4747
# If this step fails, then you should remove it and run the build manually
4848
- name: Autobuild
49-
uses: github/codeql-action/autobuild@fdbfb4d2750291e159f0156def62b853c2798ca2 # v4.31.5
49+
uses: github/codeql-action/autobuild@45cbd0c69e560cd9e7cd7f8c32362050c9b7ded2 # v4.32.2
5050

5151
- name: Perform CodeQL Analysis
52-
uses: github/codeql-action/analyze@fdbfb4d2750291e159f0156def62b853c2798ca2 # v4.31.5
52+
uses: github/codeql-action/analyze@45cbd0c69e560cd9e7cd7f8c32362050c9b7ded2 # v4.32.2

.github/workflows/datadog-static-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
name: Datadog Static Analyzer
1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
15+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1616
- name: Check code meets quality and security standards
1717
id: datadog-static-analysis
18-
uses: DataDog/datadog-static-analyzer-github-action@2cc0e0621ea2863272b29d9aea230d9aad238086 # v2.0.0
18+
uses: DataDog/datadog-static-analyzer-github-action@8340f18875fcefca86844b5f947ce2431387e552 # v3.0.0
1919
with:
2020
dd_api_key: ${{ secrets.STATIC_ANALYZER_API_KEY }}
2121
dd_app_key: ${{ secrets.STATIC_ANALYZER_APP_KEY }}

.github/workflows/docker-build-and-push.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,12 @@ jobs:
5252
echo "PLATFORM_PAIR=${platform//\//-}" >> "$GITHUB_ENV"
5353
5454
- name: Checkout
55-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
55+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
5656
with:
5757
ref: ${{ inputs.commit_sha }}
5858

5959
- name: Set up Docker Buildx
60-
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
60+
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
6161

6262
- name: Login to Docker
6363
shell: bash
@@ -75,7 +75,7 @@ jobs:
7575
- name: Build and push by digest
7676
id: build
7777
if: inputs.push == true
78-
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
78+
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.19.2
7979
with:
8080
context: .
8181
file: ${{ inputs.dockerfile }}
@@ -103,7 +103,7 @@ jobs:
103103
- name: Build and export
104104
id: build-export
105105
if: inputs.push == false
106-
uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0
106+
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.19.2
107107
with:
108108
context: .
109109
file: ${{ inputs.dockerfile }}
@@ -125,7 +125,7 @@ jobs:
125125
126126
- name: Upload digest
127127
if: inputs.push == true
128-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
128+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
129129
with:
130130
name: digests-${{ inputs.artifact_prefix }}-${{ env.PLATFORM_PAIR }}
131131
path: /tmp/digests/*
@@ -134,7 +134,7 @@ jobs:
134134

135135
- name: Upload image artifact
136136
if: inputs.push == false
137-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
137+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
138138
with:
139139
name: ${{ inputs.artifact_prefix }}-${{ env.PLATFORM_PAIR }}
140140
path: /tmp/${{ inputs.artifact_prefix }}-${{ env.PLATFORM_PAIR }}.tar
@@ -147,14 +147,14 @@ jobs:
147147
needs: [build-images]
148148
steps:
149149
- name: Download digests
150-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
150+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
151151
with:
152152
path: /tmp/digests
153153
pattern: digests-${{ inputs.artifact_prefix }}-*
154154
merge-multiple: true
155155

156156
- name: Set up Docker Buildx
157-
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
157+
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
158158

159159
- name: Login to Docker
160160
shell: bash

.github/workflows/dynamic-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
TEST_RESULT_PATH: /tmp/test-results
6161
steps:
6262
- name: Checkout
63-
uses: actions/checkout@09d2acae674a48949e3602304ab46fd20ae0c42f
63+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
6464
with:
6565
ref: ${{ github.ref }}
6666

.github/workflows/generate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
runs-on: ubuntu-latest
3333
steps:
3434
- name: Checkout
35-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
35+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3636
with:
3737
ref: ${{ inputs.ref || github.ref }}
3838
- name: Setup Go and development tools

.github/workflows/gotip-testing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
16+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1717
with:
1818
ref: ${{ github.ref }}
1919
repository: DataDog/dd-trace-go

0 commit comments

Comments
 (0)