Skip to content

Commit fe151e0

Browse files
chore(deps): bump the actions group across 1 directory with 4 updates
Bumps the actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/setup-python](https://github.com/actions/setup-python), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/download-artifact` from 4 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 255a83f commit fe151e0

File tree

5 files changed

+23
-23
lines changed

5 files changed

+23
-23
lines changed

.github/workflows/bump-changelog.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ jobs:
2424
pull-requests: write
2525
steps:
2626
- name: Checkout ${{ github.ref }}
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828
- name: Set up Python ${{ env.default-python }}
29-
uses: actions/setup-python@v5
29+
uses: actions/setup-python@v6
3030
with:
3131
python-version: ${{ env.default-python }}
3232
cache: "pip"

.github/workflows/create_tests_package_lists.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
- os: windows-latest
1919
python-version: "3.13"
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v5
2222
- name: Set up Python ${{ matrix.python-version }}
23-
uses: actions/setup-python@v5
23+
uses: actions/setup-python@v6
2424
with:
2525
python-version: ${{ matrix.python-version }}
2626
cache: "pip"
@@ -30,7 +30,7 @@ jobs:
3030
run:
3131
nox --non-interactive --session create_test_package_list-${{ matrix.python-version }} -- ./new_tests_packages
3232
- name: Store reports as artifacts
33-
uses: actions/upload-artifact@v4
33+
uses: actions/upload-artifact@v5
3434
with:
3535
name: lists-${{ matrix.os }}-${{ matrix.python-version }}
3636
path: ./new_tests_packages

.github/workflows/exhaustive_package_test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
python-version: ["3.12", "3.11", "3.10", "3.9"]
1616

1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v5
1919
- name: Set up Python ${{ matrix.python-version }}
20-
uses: actions/setup-python@v5
20+
uses: actions/setup-python@v6
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323
cache: "pip"
@@ -27,7 +27,7 @@ jobs:
2727
continue-on-error: true
2828
run: nox --non-interactive --session test_all_packages-${{ matrix.python-version }}
2929
- name: Store reports as artifacts
30-
uses: actions/upload-artifact@v4
30+
uses: actions/upload-artifact@v5
3131
with:
3232
name: reports-raw-${{ matrix.os }}-${{ matrix.python-version }}
3333
path: reports
@@ -39,7 +39,7 @@ jobs:
3939

4040
steps:
4141
- name: Get report artifacts
42-
uses: actions/download-artifact@v4
42+
uses: actions/download-artifact@v6
4343
with:
4444
pattern: reports-raw-*
4545
merge-multiple: true
@@ -58,7 +58,7 @@ jobs:
5858
cat all_packages_deps_errors_* > all_deps_errors_lf.txt
5959
tr -d '\r' < all_deps_errors_lf.txt > reports/all_deps_errors.txt
6060
- name: Store collated and raw reports as artifacts
61-
uses: actions/upload-artifact@v4
61+
uses: actions/upload-artifact@v5
6262
with:
6363
name: reports-final
6464
path: reports

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
permissions:
3232
contents: write
3333
steps:
34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@v5
3535
- name: Extract version to be released
3636
id: get-version
3737
env:
@@ -60,11 +60,11 @@ jobs:
6060
id-token: write
6161
steps:
6262
- name: Checkout ${{ needs.create-tag.outputs.release-tag }}
63-
uses: actions/checkout@v4
63+
uses: actions/checkout@v5
6464
with:
6565
ref: "${{ needs.create-tag.outputs.release-tag }}"
6666
- name: Set up Python ${{ env.default-python }}
67-
uses: actions/setup-python@v5
67+
uses: actions/setup-python@v6
6868
with:
6969
python-version: ${{ env.default-python }}
7070
cache: "pip"
@@ -82,7 +82,7 @@ jobs:
8282
permissions:
8383
contents: write
8484
steps:
85-
- uses: actions/checkout@v4
85+
- uses: actions/checkout@v5
8686
- name: Create release
8787
uses: softprops/action-gh-release@v2
8888
with:
@@ -97,11 +97,11 @@ jobs:
9797
contents: write
9898
steps:
9999
- name: Checkout ${{ needs.create-tag.outputs.release-tag }}
100-
uses: actions/checkout@v4
100+
uses: actions/checkout@v5
101101
with:
102102
ref: "${{ needs.create-tag.outputs.release-tag }}"
103103
- name: Set up Python ${{ env.minimum-supported-python }}
104-
uses: actions/setup-python@v5
104+
uses: actions/setup-python@v6
105105
with:
106106
python-version: ${{ env.minimum-supported-python }}
107107
cache: "pip"

.github/workflows/tests.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ jobs:
3131
python-version: "3.13"
3232

3333
steps:
34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@v5
3535
- name: Set up Python ${{ matrix.python-version }}
36-
uses: actions/setup-python@v5
36+
uses: actions/setup-python@v6
3737
with:
3838
python-version: ${{ matrix.python-version }}
3939
cache: "pip"
@@ -50,9 +50,9 @@ jobs:
5050
name: Build man page
5151
runs-on: ubuntu-latest
5252
steps:
53-
- uses: actions/checkout@v4
53+
- uses: actions/checkout@v5
5454
- name: Set up Python ${{ env.default-python }}
55-
uses: actions/setup-python@v5
55+
uses: actions/setup-python@v6
5656
with:
5757
python-version: ${{ env.default-python }}
5858
cache: "pip"
@@ -68,9 +68,9 @@ jobs:
6868
runs-on: ubuntu-latest
6969
steps:
7070
- name: Checkout ${{ github.ref }}
71-
uses: actions/checkout@v4
71+
uses: actions/checkout@v5
7272
- name: Set up Python ${{ env.minimum-supported-python }}
73-
uses: actions/setup-python@v5
73+
uses: actions/setup-python@v6
7474
with:
7575
python-version: ${{ env.minimum-supported-python }}
7676
cache: "pip"
@@ -80,7 +80,7 @@ jobs:
8080
run: nox --error-on-missing-interpreters --non-interactive --session zipapp
8181
- name: Test zipapp by installing black
8282
run: python ./pipx.pyz install black
83-
- uses: actions/upload-artifact@v4
83+
- uses: actions/upload-artifact@v5
8484
with:
8585
name: pipx.pyz
8686
path: pipx.pyz

0 commit comments

Comments
 (0)