Skip to content

Commit c877efe

Browse files
Bump the github-dependencies group across 1 directory with 5 updates
Bumps the github-dependencies group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/labeler](https://github.com/actions/labeler) | `6.0.1` | `6.1.0` | | [actions/checkout](https://github.com/actions/checkout) | `6.0.2` | `7.0.0` | | [actions/setup-python](https://github.com/actions/setup-python) | `6.2.0` | `6.3.0` | | [actions/cache](https://github.com/actions/cache) | `5.0.3` | `6.1.0` | | [super-linter/super-linter](https://github.com/super-linter/super-linter) | `8.5.0` | `8.7.0` | Updates `actions/labeler` from 6.0.1 to 6.1.0 - [Release notes](https://github.com/actions/labeler/releases) - [Commits](actions/labeler@634933e...f27b608) Updates `actions/checkout` from 6.0.2 to 7.0.0 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@de0fac2...9c091bb) Updates `actions/setup-python` from 6.2.0 to 6.3.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@a309ff8...ece7cb0) Updates `actions/cache` from 5.0.3 to 6.1.0 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@cdf6c1f...55cc834) Updates `super-linter/super-linter` from 8.5.0 to 8.7.0 - [Release notes](https://github.com/super-linter/super-linter/releases) - [Changelog](https://github.com/super-linter/super-linter/blob/main/CHANGELOG.md) - [Commits](super-linter/super-linter@61abc07...4ce2083) --- updated-dependencies: - dependency-name: actions/labeler dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-dependencies - dependency-name: actions/checkout dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-dependencies - dependency-name: actions/setup-python dependency-version: 6.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-dependencies - dependency-name: actions/cache dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-dependencies - dependency-name: super-linter/super-linter dependency-version: 8.7.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 71e7085 commit c877efe

6 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: 📃 Pull Request Labeler
19-
uses: actions/labeler@634933edcd8ababfe52f92936142cc22ac488b1b
19+
uses: actions/labeler@f27b608878404679385c85cfa523b85ccb86e213
2020
with:
2121
repo-token: '${{ secrets.GITHUB_TOKEN }}'
2222
configuration-path: '.github/labeler.yml'

.github/workflows/ls-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
name: 🏃🏼 Run linter
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
20+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
2121
with:
2222
persist-credentials: false
2323
- uses: ls-lint/action@02e380fe8733d499cbfc9e22276de5085508a5bd

.github/workflows/pre-commit.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,20 @@ jobs:
1313

1414
steps:
1515
- name: ✅ Checkout code
16-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
16+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
1717
with:
1818
persist-credentials: false
1919

2020
- name: 🐍 Set up Python
21-
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
21+
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1
2222
with:
2323
python-version: '3.14'
2424

2525
- name: 📐 Set Python Version Hash
2626
run: echo "PY=$(python -VV | sha256sum | cut -d' ' -f1)" >> "$GITHUB_ENV"
2727

2828
- name: 🥡 Cache pre-commit
29-
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306
29+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9
3030
with:
3131
path: ~/.cache/pre-commit
3232
key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }}

.github/workflows/proselint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: ✅ Checkout code
21-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
21+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
2222
with:
2323
persist-credentials: false
2424
- name: 👷🏾‍♂️ Set up Python
25-
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
25+
uses: actions/setup-python@ece7cb06caefa5fff74198d8649806c4678c61a1
2626
with:
2727
python-version: '3.14'
2828
- name: 🚧 Install Proselint

.github/workflows/super-linter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ jobs:
2020

2121
steps:
2222
- name: Checkout code
23-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
23+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
2424
with:
2525
persist-credentials: false
2626
fetch-depth: 0 # super-linter needs the full git history for file changes across commits
2727

2828
- name: Super-Linter
29-
uses: super-linter/super-linter@61abc07d755095a68f4987d1c2c3d1d64408f1f9
29+
uses: super-linter/super-linter@4ce20838b8ab83717e78138c5b3a1407148e0918
3030
env:
3131
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # To report GitHub Actions status checks

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- {os: windows-2022}
2727
steps:
2828
- name: '✅ Checkout ${{ github.ref }} ( ${{ github.sha }} )'
29-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
29+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
3030
with:
3131
persist-credentials: false
3232
fetch-depth: 0

0 commit comments

Comments
 (0)