Skip to content

Commit 42c1568

Browse files
build(deps): bump the official-github-actions group with 3 updates (#326)
Bumps the official-github-actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/cache](https://github.com/actions/cache). Updates `actions/checkout` from 4.2.0 to 4.2.1 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@d632683...eef6144) Updates `actions/upload-artifact` from 4.4.0 to 4.4.3 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@5076954...b4b15b8) Updates `actions/cache` from 4.1.0 to 4.1.1 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@2cdf405...3624ceb) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch dependency-group: official-github-actions - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-patch dependency-group: official-github-actions - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch dependency-group: official-github-actions ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 12a6256 commit 42c1568

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

.github/workflows/ossf-scorecard.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
# checks: read # To detect SAST tools
3030
steps:
3131
- name: Check out the codebase
32-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
32+
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
3333
with:
3434
persist-credentials: false
3535

@@ -50,7 +50,7 @@ jobs:
5050

5151
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF format to the repository Actions tab.
5252
- name: Upload artifact
53-
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
53+
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
5454
with:
5555
name: SARIF file
5656
path: results.sarif

.github/workflows/s3-gateway.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
runs-on: ubuntu-24.04
3232
steps:
3333
- name: Check out the codebase
34-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
34+
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
3535

3636
- name: Set up Docker Buildx
3737
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3.7.1
@@ -45,7 +45,7 @@ jobs:
4545
outputs: type=docker,dest=${{ runner.temp }}/oss.tar
4646

4747
- name: Upload artifact
48-
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
48+
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
4949
with:
5050
name: oss
5151
path: ${{ runner.temp }}/oss.tar
@@ -61,14 +61,14 @@ jobs:
6161
path_style: [virtual, virtual-v2]
6262
steps:
6363
- name: Check out the codebase
64-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
64+
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
6565

6666
- name: Install dependencies
6767
run: sudo apt-get update -qq && sudo apt-get install -y curl wait-for-it
6868

6969
- name: Restore cached binaries
7070
id: cache-binaries-restore
71-
uses: actions/cache/restore@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # v4.1.0
71+
uses: actions/cache/restore@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
7272
with:
7373
path: .bin
7474
key: ${{ runner.os }}-binaries
@@ -101,7 +101,7 @@ jobs:
101101
needs: test-oss
102102
steps:
103103
- name: Check out the codebase
104-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
104+
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
105105

106106
- name: Set up Docker Buildx
107107
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3.7.1
@@ -132,7 +132,7 @@ jobs:
132132
docker save nginx-s3-gateway:latest-njs-oss > ${{ runner.temp }}/latest-njs.tar
133133
134134
- name: Upload artifact - latest-njs
135-
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
135+
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
136136
with:
137137
name: latest-njs
138138
path: ${{ runner.temp }}/latest-njs.tar
@@ -145,14 +145,14 @@ jobs:
145145
needs: build-latest-njs-for-test
146146
steps:
147147
- name: Check out the codebase
148-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
148+
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
149149

150150
- name: Install dependencies
151151
run: sudo apt-get update -qq && sudo apt-get install -y curl wait-for-it
152152

153153
- name: Restore cached binaries
154154
id: cache-binaries-restore
155-
uses: actions/cache/restore@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # v4.1.0
155+
uses: actions/cache/restore@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
156156
with:
157157
path: .bin
158158
key: ${{ runner.os }}-binaries
@@ -186,7 +186,7 @@ jobs:
186186
needs: test-oss
187187
steps:
188188
- name: Check out the codebase
189-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
189+
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
190190

191191
- name: Set up Docker Buildx
192192
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3.7.1
@@ -217,7 +217,7 @@ jobs:
217217
docker save nginx-s3-gateway:unprivileged-oss > ${{ runner.temp }}/unprivileged.tar
218218
219219
- name: Upload artifact - unprivileged
220-
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
220+
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
221221
with:
222222
name: unprivileged
223223
path: ${{ runner.temp }}/unprivileged.tar
@@ -230,14 +230,14 @@ jobs:
230230
needs: build-unprivileged-for-test
231231
steps:
232232
- name: Check out the codebase
233-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
233+
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
234234

235235
- name: Install dependencies
236236
run: sudo apt-get update -qq && sudo apt-get install -y curl wait-for-it
237237

238238
- name: Restore cached binaries
239239
id: cache-binaries-restore
240-
uses: actions/cache/restore@2cdf405574d6ef1f33a1d12acccd3ae82f47b3f2 # v4.1.0
240+
uses: actions/cache/restore@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
241241
with:
242242
path: .bin
243243
key: ${{ runner.os }}-binaries
@@ -281,7 +281,7 @@ jobs:
281281
- 5000:5000
282282
steps:
283283
- name: Check out the codebase
284-
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
284+
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
285285

286286
- name: Get current date
287287
id: date

0 commit comments

Comments
 (0)