Skip to content

Commit 1858545

Browse files
chore(deps): bump the ci group across 1 directory with 3 updates
Bumps the ci group with 3 updates in the / directory: [actions/cache](https://github.com/actions/cache), [github/codeql-action](https://github.com/github/codeql-action) and [release-drafter/release-drafter](https://github.com/release-drafter/release-drafter). Updates `actions/cache` from 5.0.3 to 5.0.4 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@cdf6c1f...6682284) Updates `github/codeql-action` from 4.32.6 to 4.33.0 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@0d579ff...b1bff81) Updates `release-drafter/release-drafter` from 7.0.0 to 7.1.1 - [Release notes](https://github.com/release-drafter/release-drafter/releases) - [Commits](release-drafter/release-drafter@3a7fb5c...139054a) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: ci - dependency-name: github/codeql-action dependency-version: 4.33.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: ci - dependency-name: release-drafter/release-drafter dependency-version: 7.1.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: ci ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 38c1414 commit 1858545

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

.github/workflows/check-manifest-generation-diff.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
with:
2727
go-version-file: '${{ github.workspace }}/go.mod'
2828
- name: Restore Go cache
29-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306
29+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7
3030
with:
3131
path: /home/runner/work/_temp/_github_home/go/pkg/mod
3232
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}

.github/workflows/codeql.yml

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

6868
# Initializes the CodeQL tools for scanning.
6969
- name: Initialize CodeQL
70-
uses: github/codeql-action/init@0d579ffd059c29b07949a3cce3983f0780820c98
70+
uses: github/codeql-action/init@b1bff81932f5cdfc8695c7752dcee935dcd061c8
7171
with:
7272
languages: ${{ matrix.language }}
7373
build-mode: ${{ matrix.build-mode }}
@@ -80,6 +80,6 @@ jobs:
8080
# queries: security-extended,security-and-quality
8181

8282
- name: Perform CodeQL Analysis
83-
uses: github/codeql-action/analyze@0d579ffd059c29b07949a3cce3983f0780820c98
83+
uses: github/codeql-action/analyze@b1bff81932f5cdfc8695c7752dcee935dcd061c8
8484
with:
8585
category: "/language:${{matrix.language}}"

.github/workflows/components.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
ref: ${{ github.event.pull_request.head.sha }}
2626
fetch-depth: 0
2727
- name: Cache go-build and mod
28-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306
28+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7
2929
with:
3030
path: |
3131
~/.cache/go-build/

.github/workflows/e2e.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
with:
3737
go-version-file: '${{ github.workspace }}/go.mod'
3838
- name: Restore Go cache
39-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306
39+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7
4040
with:
4141
path: /home/runner/work/_temp/_github_home/go/pkg/mod
4242
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}

.github/workflows/release-drafter.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
contents: write
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: release-drafter/release-drafter@3a7fb5c85b80b1dda66e1ccb94009adbbd32fce3
18+
- uses: release-drafter/release-drafter@139054aeaa9adc52ab36ddf67437541f039b88e2
1919
with:
2020
config-name: .github/release-drafter.yml
2121
env:

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
with:
4242
go-version-file: '${{ github.workspace }}/go.mod'
4343
- name: Cache go-build and mod
44-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306
44+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7
4545
with:
4646
path: |
4747
~/.cache/go-build/

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
with:
3232
go-version-file: '${{ github.workspace }}/go.mod'
3333
- name: Restore Go cache
34-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306
34+
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7
3535
with:
3636
path: /home/runner/work/_temp/_github_home/go/pkg/mod
3737
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}

0 commit comments

Comments
 (0)