Skip to content

Commit 05d4298

Browse files
chore(deps): bump the all group across 1 directory with 5 updates
Bumps the all group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `6.0.1` | `6.0.2` | | [cachix/cachix-action](https://github.com/cachix/cachix-action) | `0fc020193b5a1fa3ac4575aa3a7d3aa6a35435ad` | `3ba601ff5bbb07c7220846facfa2cd81eeee15a1` | | [docker/login-action](https://github.com/docker/login-action) | `3.6.0` | `3.7.0` | | [actions/setup-python](https://github.com/actions/setup-python) | `6.1.0` | `6.2.0` | | [astral-sh/ruff-action](https://github.com/astral-sh/ruff-action) | `3.5.1` | `3.6.1` | Updates `actions/checkout` from 6.0.1 to 6.0.2 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@8e8c483...de0fac2) Updates `cachix/cachix-action` from 0fc020193b5a1fa3ac4575aa3a7d3aa6a35435ad to 3ba601ff5bbb07c7220846facfa2cd81eeee15a1 - [Release notes](https://github.com/cachix/cachix-action/releases) - [Commits](cachix/cachix-action@0fc0201...3ba601f) Updates `docker/login-action` from 3.6.0 to 3.7.0 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@5e57cd1...c94ce9f) Updates `actions/setup-python` from 6.1.0 to 6.2.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@83679a8...a309ff8) Updates `astral-sh/ruff-action` from 3.5.1 to 3.6.1 - [Release notes](https://github.com/astral-sh/ruff-action/releases) - [Commits](astral-sh/ruff-action@57714a7...4919ec5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: cachix/cachix-action dependency-version: 3ba601ff5bbb07c7220846facfa2cd81eeee15a1 dependency-type: direct:production dependency-group: all - dependency-name: docker/login-action dependency-version: 3.7.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all - dependency-name: actions/setup-python dependency-version: 6.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all - dependency-name: astral-sh/ruff-action dependency-version: 3.6.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 45983a8 commit 05d4298

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
- os: windows-2025
5656
type: simil
5757
steps:
58-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
58+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
5959
with:
6060
persist-credentials: false
6161
- name: Install uv and Python ${{ matrix.python }}
@@ -78,7 +78,7 @@ jobs:
7878

7979
- name: Set up cachix
8080
if: matrix.type == 'dapp'
81-
uses: cachix/cachix-action@0fc020193b5a1fa3ac4575aa3a7d3aa6a35435ad # v16
81+
uses: cachix/cachix-action@3ba601ff5bbb07c7220846facfa2cd81eeee15a1 # v16
8282
with:
8383
name: dapp
8484

.github/workflows/docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
23+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2424
with:
2525
persist-credentials: false
2626

@@ -45,7 +45,7 @@ jobs:
4545
type=edge
4646
4747
- name: GitHub Container Registry Login
48-
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3
48+
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3
4949
with:
5050
registry: ghcr.io
5151
username: ${{ github.actor }}

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-slim
2929
steps:
3030
- name: Checkout
31-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
31+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
3232
with:
3333
persist-credentials: false
3434
- name: Setup Pages

.github/workflows/doctor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ jobs:
2828
os: ["ubuntu-latest", "windows-2025"]
2929
python: ["3.10", "3.14"]
3030
steps:
31-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
31+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
3232
with:
3333
persist-credentials: false
3434

3535
- name: Set up Python ${{ matrix.python }}
36-
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6
36+
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
3737
with:
3838
python-version: ${{ matrix.python }}
3939

.github/workflows/lint.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ jobs:
3232

3333
steps:
3434
- name: Checkout Code
35-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
35+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
3636
with:
3737
persist-credentials: false
3838

3939
- name: Run Ruff linter
40-
uses: astral-sh/ruff-action@57714a7c8a2e59f32539362ba31877a1957dded1 # v3
40+
uses: astral-sh/ruff-action@4919ec5cf1f49eff0871dbcea0da843445b837e6 # v3
4141
with:
4242
args: "check slither/ tests/ scripts/"
4343

@@ -58,7 +58,7 @@ jobs:
5858

5959
steps:
6060
- name: Checkout Code
61-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
61+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
6262
with:
6363
persist-credentials: false
6464

@@ -84,7 +84,7 @@ jobs:
8484

8585
steps:
8686
- name: Checkout Code
87-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
87+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
8888
with:
8989
persist-credentials: false
9090

.github/workflows/pip-audit.yml

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

2626
steps:
2727
- name: Checkout repository
28-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
28+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
2929
with:
3030
persist-credentials: false
3131

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-slim
1313

1414
steps:
15-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
15+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
1616
with:
1717
persist-credentials: false
1818

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
${{ (github.event_name == 'pull_request' && fromJSON('["3.10", "3.14"]'))
3838
|| fromJSON('["3.10", "3.11", "3.12", "3.13", "3.14"]') }}
3939
steps:
40-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
40+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
4141
with:
4242
persist-credentials: false
4343
- name: Install uv and Python ${{ matrix.python }}
@@ -115,7 +115,7 @@ jobs:
115115
runs-on: ubuntu-latest
116116

117117
steps:
118-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
118+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
119119
with:
120120
persist-credentials: false
121121
- name: Install uv and Python

0 commit comments

Comments
 (0)