Skip to content

Commit da9eeb8

Browse files
ci: bump the github-actions group across 1 directory with 4 updates
Bumps the github-actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [python-semantic-release/python-semantic-release](https://github.com/python-semantic-release/python-semantic-release), [actions/stale](https://github.com/actions/stale) and [tj-actions/changed-files](https://github.com/tj-actions/changed-files). Updates `actions/checkout` from 5.0.0 to 6.0.1 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@08c6903...8e8c483) Updates `python-semantic-release/python-semantic-release` from 10.5.2 to 10.5.3 - [Release notes](https://github.com/python-semantic-release/python-semantic-release/releases) - [Changelog](https://github.com/python-semantic-release/python-semantic-release/blob/master/CHANGELOG.rst) - [Commits](python-semantic-release/python-semantic-release@02f2a5c...350c48f) Updates `actions/stale` from 10.1.0 to 10.1.1 - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](actions/stale@5f858e3...9971854) Updates `tj-actions/changed-files` from 47.0.0 to 47.0.1 - [Release notes](https://github.com/tj-actions/changed-files/releases) - [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md) - [Commits](tj-actions/changed-files@24d32ff...e002140) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: python-semantic-release/python-semantic-release dependency-version: 10.5.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: actions/stale dependency-version: 10.1.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: tj-actions/changed-files dependency-version: 47.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 948bb8f commit da9eeb8

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
# the branch was updated. To keep PSR working with the configured release branches,
4949
# we force a checkout of the desired release branch but at the workflow sha HEAD.
5050
- name: Setup | Checkout Repository at workflow sha
51-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
51+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
5252
with:
5353
fetch-depth: 0
5454
ref: ${{ github.sha }}
@@ -59,7 +59,7 @@ jobs:
5959
6060
- name: Release | Python Semantic Release
6161
id: release
62-
uses: python-semantic-release/python-semantic-release@02f2a5c74dbb6aa2989f10fc4af12cd8e6bf025f # v10.5.2
62+
uses: python-semantic-release/python-semantic-release@350c48fcb3ffcdfd2e0a235206bc2ecea6b69df0 # v10.5.3
6363
with:
6464
github_token: ${{ secrets.GITHUB_TOKEN }}
6565
verbosity: 2

.github/workflows/stale.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
steps:
2929

3030
- name: Stale Issues/PRs
31-
uses: actions/stale@5f858e3efba33a5ca4407a664cc011ad407f2008 # v10.1.0
31+
uses: actions/stale@997185467fa4f803885201cee163a9f38240193d # v10.1.1
3232
with:
3333
# default: 30, GitHub Actions API Rate limit is 1000/hr
3434
operations-per-run: ${{ env.OPERATIONS_RATE_LIMIT }}
@@ -67,7 +67,7 @@ jobs:
6767
# that point the submitter has 14 days before a reminder/warning is given. If
6868
# no response has been received within 3 weeks, the issue is closed. There are
6969
# no exemptions besides removing the awaiting-reply label.
70-
uses: actions/stale@5f858e3efba33a5ca4407a664cc011ad407f2008 # v10.1.0
70+
uses: actions/stale@997185467fa4f803885201cee163a9f38240193d # v10.1.1
7171
with:
7272
# GitHub Actions API Rate limit is 1000/hr
7373
operations-per-run: ${{ env.OPERATIONS_RATE_LIMIT }}
@@ -97,7 +97,7 @@ jobs:
9797
# forgotten completely, this job will post a reminder message to the maintainers
9898
# No closures will occur and there are no exemptions besides removing the confirmed
9999
# label.
100-
uses: actions/stale@5f858e3efba33a5ca4407a664cc011ad407f2008 # v10.1.0
100+
uses: actions/stale@997185467fa4f803885201cee163a9f38240193d # v10.1.1
101101
with:
102102
# GitHub Actions API Rate limit is 1000/hr
103103
operations-per-run: ${{ env.OPERATIONS_RATE_LIMIT }}

.github/workflows/validate.yml

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

2121
steps:
2222
- name: Setup | Checkout Repository
23-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
23+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
2424
with:
2525
fetch-depth: 50 # Must at least retrieve a set of commits to compare changes
2626
# primarily because of any 'Rebase and Merge' PR action in GitHub
2727

2828
- name: Evaluate | Check specific file types for changes
2929
id: changed-files
30-
uses: tj-actions/changed-files@24d32ffd492484c1d75e0c0b894501ddb9d30d62 # v47.0.0
30+
uses: tj-actions/changed-files@e0021407031f5be11a464abee9a0776171c79891 # v47.0.1
3131
if: github.event_name == 'push' || github.event_name == 'pull_request'
3232
with:
3333
base_sha: ${{ github.event.push.before || github.event.pull_request.base.sha }}
@@ -81,7 +81,7 @@ jobs:
8181

8282
steps:
8383
- name: Setup | Checkout Repository
84-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
84+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
8585
with:
8686
fetch-depth: 0
8787
ref: ${{ github.sha }}
@@ -102,7 +102,7 @@ jobs:
102102

103103
steps:
104104
- name: Setup | Checkout Repository
105-
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
105+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
106106
with:
107107
fetch-depth: 1
108108
ref: ${{ github.sha }}

0 commit comments

Comments
 (0)