Skip to content

Commit 95aa62f

Browse files
Bump the actions group across 1 directory with 3 updates
Bumps the actions group with 3 updates in the / directory: [actions/cache](https://github.com/actions/cache), [stefanzweifel/git-auto-commit-action](https://github.com/stefanzweifel/git-auto-commit-action) and [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action). Updates `actions/cache` from 4.3.0 to 5.0.1 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4.3.0...v5.0.1) Updates `stefanzweifel/git-auto-commit-action` from 7.0.0 to 7.1.0 - [Release notes](https://github.com/stefanzweifel/git-auto-commit-action/releases) - [Changelog](https://github.com/stefanzweifel/git-auto-commit-action/blob/master/CHANGELOG.md) - [Commits](stefanzweifel/git-auto-commit-action@28e16e8...04702ed) Updates `docker/setup-buildx-action` from 3.11.1 to 3.12.0 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](docker/setup-buildx-action@v3.11.1...v3.12.0) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: stefanzweifel/git-auto-commit-action dependency-version: 7.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: docker/setup-buildx-action dependency-version: 3.12.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 260cb6d commit 95aa62f

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

.github/workflows/chromatic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
- name: Cache node_modules
1919
id: node-modules-cache
20-
uses: actions/cache@v4.3.0
20+
uses: actions/cache@v5.0.1
2121
with:
2222
path: node_modules
2323
key: node-modules-cache-${{ hashFiles('package-lock.json', '.npmrc') }}

.github/workflows/ci.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- uses: actions/checkout@v6.0.1
1818
- name: Lookup node_modules cache
1919
id: node-modules-cache
20-
uses: actions/cache@v4.3.0
20+
uses: actions/cache@v5.0.1
2121
with:
2222
path: node_modules
2323
key: node-modules-cache-${{ hashFiles('package-lock.json', '.npmrc') }}
@@ -34,7 +34,7 @@ jobs:
3434
- uses: actions/checkout@v6.0.1
3535
- name: Restore node_modules cache
3636
id: node-modules-cache
37-
uses: actions/cache/restore@v4.3.0
37+
uses: actions/cache/restore@v5.0.1
3838
with:
3939
path: node_modules
4040
key: node-modules-cache-${{ hashFiles('package-lock.json', '.npmrc') }}
@@ -49,13 +49,13 @@ jobs:
4949
- uses: actions/checkout@v6.0.1
5050
- name: Restore node_modules cache
5151
id: node-modules-cache
52-
uses: actions/cache/restore@v4.3.0
52+
uses: actions/cache/restore@v5.0.1
5353
with:
5454
path: node_modules
5555
key: node-modules-cache-${{ hashFiles('package-lock.json', '.npmrc') }}
5656
fail-on-cache-miss: true
5757
- name: Restore NX cache
58-
uses: actions/cache@v4.3.0
58+
uses: actions/cache@v5.0.1
5959
with:
6060
path: .nx/cache
6161
key: nx-lint-${{ github.sha }}
@@ -85,7 +85,7 @@ jobs:
8585
uses: actions/checkout@v6.0.1
8686
- name: Restore node_modules cache
8787
id: node-modules-cache
88-
uses: actions/cache/restore@v4.3.0
88+
uses: actions/cache/restore@v5.0.1
8989
with:
9090
path: node_modules
9191
key: node-modules-cache-${{ hashFiles('package-lock.json', '.npmrc') }}
@@ -99,7 +99,7 @@ jobs:
9999
fi
100100
- name: Commit changes for dependabot
101101
if: failure() && startsWith(github.head_ref, 'dependabot/')
102-
uses: stefanzweifel/git-auto-commit-action@28e16e81777b558cc906c8750092100bbb34c5e3
102+
uses: stefanzweifel/git-auto-commit-action@04702edda442b2e678b25b537cec683a1493fcb9
103103
with:
104104
commit_message: Update THIRD_PARTY_LICENSES.txt
105105
test:
@@ -128,13 +128,13 @@ jobs:
128128
- uses: actions/checkout@v6.0.1
129129
- name: Restore node_modules cache
130130
id: node-modules-cache
131-
uses: actions/cache/restore@v4.3.0
131+
uses: actions/cache/restore@v5.0.1
132132
with:
133133
path: node_modules
134134
key: node-modules-cache-${{ hashFiles('package-lock.json', '.npmrc') }}
135135
fail-on-cache-miss: true
136136
- name: Restore NX cache
137-
uses: actions/cache@v4.3.0
137+
uses: actions/cache@v5.0.1
138138
with:
139139
path: .nx/cache
140140
key: nx-test-${{ matrix.test-suits.key || matrix.test-suits.name }}-${{ github.sha }}
@@ -161,13 +161,13 @@ jobs:
161161
- uses: actions/checkout@v6.0.1
162162
- name: Restore node_modules cache
163163
id: node-modules-cache
164-
uses: actions/cache/restore@v4.3.0
164+
uses: actions/cache/restore@v5.0.1
165165
with:
166166
path: node_modules
167167
key: node-modules-cache-${{ hashFiles('package-lock.json', '.npmrc') }}
168168
fail-on-cache-miss: true
169169
- name: Restore NX cache
170-
uses: actions/cache@v4.3.0
170+
uses: actions/cache@v5.0.1
171171
with:
172172
path: .nx/cache
173173
key: nx-build-${{ github.sha }}
@@ -180,7 +180,7 @@ jobs:
180180
npx nx run-many --target=build
181181
./tools/truncate-nx-cache.sh
182182
- name: Save build cache
183-
uses: actions/cache/save@v4.3.0
183+
uses: actions/cache/save@v5.0.1
184184
with:
185185
path: dist
186186
key: dist-${{ github.sha }}
@@ -201,13 +201,13 @@ jobs:
201201
steps:
202202
- uses: actions/checkout@v6.0.1
203203
- name: Restore build cache
204-
uses: actions/cache/restore@v4.3.0
204+
uses: actions/cache/restore@v5.0.1
205205
with:
206206
path: dist
207207
key: dist-${{ github.sha }}
208208
fail-on-cache-miss: true
209209
- name: Set up Docker Buildx
210-
uses: docker/setup-buildx-action@v3.11.1
210+
uses: docker/setup-buildx-action@v3.12.0
211211
- name: Configure AWS credentials
212212
if: vars.ECR_REGION
213213
uses: aws-actions/configure-aws-credentials@v5.1.1

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
VERSION: ${{ needs.get-version.outputs.version }}
4545
steps:
4646
- name: Set up Docker Buildx
47-
uses: docker/setup-buildx-action@v3.11.1
47+
uses: docker/setup-buildx-action@v3.12.0
4848
- name: Configure AWS credentials
4949
uses: aws-actions/configure-aws-credentials@v5.1.1
5050
with:

0 commit comments

Comments
 (0)