Skip to content

Commit 6d0090d

Browse files
chore(deps): update all dependencies
1 parent 442c6e7 commit 6d0090d

7 files changed

Lines changed: 1396 additions & 1394 deletions

File tree

.github/workflows/ack.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
5858
- name: Update release notes if this is already merged
5959
if: github.event.pull_request.merged == true
60-
uses: release-drafter/release-drafter@139054aeaa9adc52ab36ddf67437541f039b88e2 # v7
60+
uses: release-drafter/release-drafter@5de93583980a40bd78603b6dfdcda5b4df377b32 # v7
6161
env:
6262
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6363

.github/workflows/push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
update_release_draft:
1616
runs-on: ubuntu-24.04
1717
steps:
18-
- uses: release-drafter/release-drafter@139054aeaa9adc52ab36ddf67437541f039b88e2 # v7
18+
- uses: release-drafter/release-drafter@5de93583980a40bd78603b6dfdcda5b4df377b32 # v7
1919
env:
2020
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2121

.github/workflows/push_network.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
4646
- name: Run release drafter
4747
id: release_drafter
48-
uses: release-drafter/release-drafter@139054aeaa9adc52ab36ddf67437541f039b88e2 # v7
48+
uses: release-drafter/release-drafter@5de93583980a40bd78603b6dfdcda5b4df377b32 # v7
4949
env:
5050
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5151

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
ref: ${{ github.head_ref }}
4747
token: ${{ secrets.BOT_PAT }}
4848

49-
- uses: astral-sh/setup-uv@v7
49+
- uses: astral-sh/setup-uv@v8.1.0
5050

5151
- uses: j178/prek-action@v2
5252
id: prek

.github/workflows/tox.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -154,14 +154,14 @@ jobs:
154154
submodules: true
155155

156156
- name: Set prek cache
157-
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5
157+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5
158158
if: ${{ matrix.name == 'lint' }}
159159
with:
160160
path: ~/.cache/prek
161161
key: prek-${{ matrix.name }}-${{ hashFiles('.pre-commit-config.yaml') }}
162162

163163
- name: Install the latest version of uv
164-
uses: astral-sh/setup-uv@v7
164+
uses: astral-sh/setup-uv@v8.1.0
165165
with:
166166
python-version: ${{ matrix.uv_python_version || '3.12' }}
167167

@@ -181,13 +181,13 @@ jobs:
181181
182182
- name: Set up Node.js (custom)
183183
if: ${{ inputs.node-version-file != '' }}
184-
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
184+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
185185
with:
186186
node-version-file: ${{ inputs.node-version-file }}
187187

188188
- name: Set up Node.js
189189
if: ${{ inputs.node-version-file == '' }}
190-
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
190+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
191191
with:
192192
node-version: "24"
193193

@@ -302,7 +302,7 @@ jobs:
302302
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
303303

304304
- name: Install the latest version of uv
305-
uses: astral-sh/setup-uv@v7
305+
uses: astral-sh/setup-uv@v8.1.0
306306

307307
- name: Save PR number
308308
if: github.event_name == 'pull_request'
@@ -312,14 +312,14 @@ jobs:
312312
313313
- name: Upload PR number artifact
314314
if: github.event_name == 'pull_request'
315-
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
315+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
316316
with:
317317
name: pr_number
318318
path: pr_number.txt
319319

320320
- name: Merge logs into a single archive
321321
# Should do nothing if job is retried
322-
uses: actions/upload-artifact/merge@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
322+
uses: actions/upload-artifact/merge@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
323323
with:
324324
name: logs.zip
325325
pattern: logs-*.zip

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ repos:
1414
- id: check-useless-excludes
1515
priority: 0
1616
- repo: https://github.com/astral-sh/uv-pre-commit
17-
rev: 0.11.3
17+
rev: 0.11.7
1818
hooks:
1919
- id: uv-sync
2020
priority: 0
@@ -25,7 +25,7 @@ repos:
2525
args: ["--upgrade"]
2626
stages: [manual]
2727
- repo: https://github.com/biomejs/pre-commit
28-
rev: "v2.4.10"
28+
rev: "v2.4.13"
2929
hooks:
3030
- id: biome-check
3131
priority: 1
@@ -53,7 +53,7 @@ repos:
5353
- id: check-merge-conflict
5454
priority: 0
5555
- repo: https://github.com/tombi-toml/tombi-pre-commit
56-
rev: v0.9.15
56+
rev: v0.9.22
5757
hooks:
5858
- id: tombi-format
5959
alias: toml
@@ -78,6 +78,6 @@ repos:
7878
entry: uv run -q --group=lint ansible-lint --fix
7979
priority: 1
8080
- repo: https://github.com/ansible/actions
81-
rev: v1.1.1
81+
rev: v1.1.2
8282
hooks:
8383
- id: ruff

0 commit comments

Comments
 (0)