Skip to content

Commit cc10683

Browse files
chore(deps): bump the actions group across 1 directory with 3 updates
Bumps the actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/setup-node](https://github.com/actions/setup-node) and [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv). Updates `actions/checkout` from 6.0.3 to 7.0.1 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@df4cb1c...3d3c42e) Updates `actions/setup-node` from 6.5.0 to 7.0.0 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@2499707...8207627) Updates `astral-sh/setup-uv` from 8.3.2 to 9.0.0 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@11f9893...c771a70) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-node dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: astral-sh/setup-uv dependency-version: 9.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 1859b26 commit cc10683

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/audit-archive.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
fi
9797
- name: Record absolute job deadline origin
9898
run: echo "CHEATCODE_AUDIT_ARCHIVE_JOB_STARTED_AT_MS=$(date +%s%3N)" >> "$GITHUB_ENV"
99-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
99+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
100100
with:
101101
ref: ${{ github.sha }}
102102
- uses: ./.github/actions/setup-repository

.github/workflows/build-snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
echo "Confirmation must exactly match BUILD_SNAPSHOT." >&2
3939
exit 1
4040
fi
41-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
41+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
4242
with:
4343
ref: ${{ github.sha }}
4444
- uses: aquasecurity/setup-trivy@81e514348e19b6112ce2a7e3ecbafe19c1e1f567 # v0.3.1

.github/workflows/static-checks.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
skills: ${{ steps.scope.outputs.skills }}
4242
workflow: ${{ steps.scope.outputs.workflow }}
4343
steps:
44-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
44+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
4545
with:
4646
fetch-depth: 0
4747
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
@@ -240,7 +240,7 @@ jobs:
240240
runs-on: ubuntu-24.04
241241
timeout-minutes: 10
242242
steps:
243-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
243+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
244244
- name: Lint GitHub Actions and embedded shell
245245
uses: raven-actions/actionlint@3d39aea434753780c3b3d4a1a31c854b4dbf49d7 # v2.2.0
246246
with:
@@ -255,7 +255,7 @@ jobs:
255255
runs-on: ubuntu-24.04
256256
timeout-minutes: 20
257257
steps:
258-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
258+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
259259
- name: Set up Node for npm lockfile audits
260260
if: >-
261261
needs.changes.outputs.audit_app_generators == 'true' ||
@@ -264,12 +264,12 @@ jobs:
264264
needs.changes.outputs.audit_package_manager == 'true' ||
265265
needs.changes.outputs.audit_parquet_viewer == 'true' ||
266266
needs.changes.outputs.audit_skill_runtime == 'true'
267-
uses: actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6.5.0
267+
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
268268
with:
269269
node-version: 22.22.2
270270
- name: Set up uv for Python lockfile audit
271271
if: needs.changes.outputs.audit_python == 'true'
272-
uses: astral-sh/setup-uv@11f9893b081a58869d3b5fccaea48c9e9e46f990 # v8.3.2
272+
uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0
273273
with:
274274
enable-cache: false
275275
version: 0.11.28
@@ -325,7 +325,7 @@ jobs:
325325
HEAD_SHA: ${{ needs.changes.outputs.head_sha }}
326326
SKILLS_CHANGED: ${{ needs.changes.outputs.skills }}
327327
steps:
328-
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
328+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
329329
with:
330330
fetch-depth: 0
331331
ref: ${{ needs.changes.outputs.head_sha }}

0 commit comments

Comments
 (0)