Skip to content

Commit 24c2a96

Browse files
Bump the github-actions group across 1 directory with 4 updates (#3922)
Bumps the github-actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact), [github/codeql-action](https://github.com/github/codeql-action) and [actions/cache](https://github.com/actions/cache). Updates `actions/checkout` from 4.1.7 to 4.2.2 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@692973e...11bd719) 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 `github/codeql-action` from 3.26.6 to 3.27.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@4dd1613...6624720) Updates `actions/cache` from 4.0.2 to 4.1.2 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@0c45773...6849a64) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 5168f81 commit 24c2a96

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/scorecards-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
steps:
2323
- name: "Checkout code"
24-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
24+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
2525
with:
2626
persist-credentials: false
2727

@@ -41,14 +41,14 @@ jobs:
4141

4242
# Upload the results as artifacts (optional).
4343
- name: "Upload artifact"
44-
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874
44+
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882
4545
with:
4646
name: SARIF file
4747
path: results.sarif
4848
retention-days: 5
4949

5050
# Upload the results to GitHub's code scanning dashboard.
5151
- name: "Upload to code-scanning"
52-
uses: github/codeql-action/upload-sarif@4dd16135b69a43b6c8efb853346f8437d92d3c93
52+
uses: github/codeql-action/upload-sarif@662472033e021d55d94146f66f6058822b0b39fd
5353
with:
5454
sarif_file: results.sarif

.github/workflows/test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
run: echo "name=today::$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
4949
shell: bash
5050
- name: Cache clean flutter
51-
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
51+
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a
5252
if: matrix.job == 'flutter'
5353
env:
5454
# Increment version to invalidate bad/obsolete caches.
@@ -57,7 +57,7 @@ jobs:
5757
path: ~/.dartdoc_grinder
5858
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ steps.date.outputs.today }}
5959
- name: Cache .pub-cache
60-
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9
60+
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a
6161
if: matrix.job == 'flutter'
6262
env:
6363
# Increment version to invalidate bad/obsolete caches.
@@ -68,7 +68,7 @@ jobs:
6868
- name: Configure git
6969
if: runner.os == 'Windows'
7070
run: git config --global core.autocrlf input
71-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
71+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
7272
- uses: dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672
7373
with:
7474
sdk: ${{ matrix.sdk }}

0 commit comments

Comments
 (0)