Skip to content

Commit b920260

Browse files
Bump the github-actions group across 1 directory with 6 updates
Bumps the github-actions group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `5.0.1` | `6.0.1` | | [actions/setup-python](https://github.com/actions/setup-python) | `6.0.0` | `6.1.0` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `5.0.0` | `6.0.0` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `6.0.0` | `7.0.0` | | [actions/attest-build-provenance](https://github.com/actions/attest-build-provenance) | `3.0.0` | `3.1.0` | | [dorny/test-reporter](https://github.com/dorny/test-reporter) | `2.2.0` | `2.3.0` | Updates `actions/checkout` from 5.0.1 to 6.0.1 - [Release notes](https://github.com/actions/checkout/releases) - [Commits](actions/checkout@v5.0.1...v6.0.1) Updates `actions/setup-python` from 6.0.0 to 6.1.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v6...v6.1.0) Updates `actions/upload-artifact` from 5.0.0 to 6.0.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) Updates `actions/download-artifact` from 6.0.0 to 7.0.0 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@018cc2c...37930b1) Updates `actions/attest-build-provenance` from 3.0.0 to 3.1.0 - [Release notes](https://github.com/actions/attest-build-provenance/releases) - [Changelog](https://github.com/actions/attest-build-provenance/blob/main/RELEASE.md) - [Commits](actions/attest-build-provenance@977bb37...00014ed) Updates `dorny/test-reporter` from 2.2.0 to 2.3.0 - [Release notes](https://github.com/dorny/test-reporter/releases) - [Changelog](https://github.com/dorny/test-reporter/blob/main/CHANGELOG.md) - [Commits](dorny/test-reporter@v2.2.0...v2.3.0) --- 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: actions/setup-python dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/attest-build-provenance dependency-version: 3.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: dorny/test-reporter dependency-version: 2.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 1a4548a commit b920260

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

.github/workflows/check_ts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
if: false
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v6
11+
- uses: actions/checkout@v6.0.1
1212
- name: Get diff lines
1313
id: diff
1414
uses: Equip-Collaboration/[email protected]

.github/workflows/ci.yml

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

2121
name: Python ${{ matrix.python-version}}
2222
steps:
23-
- uses: actions/checkout@v6
23+
- uses: actions/checkout@v6.0.1
2424

2525
- name: Set up Python
26-
uses: actions/setup-python@v6.0.0
26+
uses: actions/setup-python@v6.1.0
2727
with:
2828
python-version: ${{ matrix.python-version }}
2929

@@ -40,7 +40,7 @@ jobs:
4040
env:
4141
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
4242

43-
- uses: actions/upload-artifact@v5
43+
- uses: actions/upload-artifact@v6.0.0
4444
if: success() || failure()
4545
with:
4646
name: test-results-${{ matrix.python-version }}
@@ -59,15 +59,15 @@ jobs:
5959

6060
name: Python ${{ matrix.python-version}} + typedoc ${{ matrix.typedoc-version }}
6161
steps:
62-
- uses: actions/checkout@v6
62+
- uses: actions/checkout@v6.0.1
6363

6464
- name: Set up Node
6565
uses: actions/setup-node@v6
6666
with:
6767
node-version: 22
6868

6969
- name: Set up Python
70-
uses: actions/setup-python@v6.0.0
70+
uses: actions/setup-python@v6.1.0
7171
with:
7272
python-version: ${{ matrix.python-version }}
7373

@@ -78,7 +78,7 @@ jobs:
7878
- name: Test
7979
run: nox -s "test_typedoc-${{ matrix.python-version }}(typedoc='${{ matrix.typedoc-version }}')"
8080

81-
- uses: actions/upload-artifact@v5
81+
- uses: actions/upload-artifact@v6.0.0
8282
if: success() || failure()
8383
with:
8484
name: test_typedoc-results-${{ matrix.python-version }}-${{ matrix.typedoc-version }}
@@ -97,10 +97,10 @@ jobs:
9797

9898
name: Test sphinx 6
9999
steps:
100-
- uses: actions/checkout@v6
100+
- uses: actions/checkout@v6.0.1
101101

102102
- name: Set up Python
103-
uses: actions/setup-python@v6.0.0
103+
uses: actions/setup-python@v6.1.0
104104
with:
105105
python-version: ${{ matrix.python-version }}
106106

@@ -111,7 +111,7 @@ jobs:
111111
- name: Test
112112
run: nox -s "test_sphinx_6-${{ matrix.python-version }}"
113113

114-
- uses: actions/upload-artifact@v5
114+
- uses: actions/upload-artifact@v6.0.0
115115
if: success() || failure()
116116
with:
117117
name: test_sphinx_6-${{ matrix.python-version }}

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
build:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v4.2.2
17+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v4.2.2
1818
with:
1919
# include tags so that hatch-vcs can infer the version
2020
fetch-depth: 0
@@ -23,7 +23,7 @@ jobs:
2323
# fetch-tags: true
2424

2525
- name: Setup Python
26-
uses: actions/setup-python@bba65e51ff35d50c6dbaaacd8a4681db13aa7cb4 # v5.6.0
26+
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v5.6.0
2727
with:
2828
python-version: "3.12"
2929

@@ -33,7 +33,7 @@ jobs:
3333
python -m build .
3434
3535
- name: Store the distribution packages
36-
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
36+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
3737
with:
3838
name: python-package-distributions
3939
path: dist/
@@ -53,13 +53,13 @@ jobs:
5353
contents: read
5454
steps:
5555
- name: Download all the dists
56-
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
56+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
5757
with:
5858
path: dist/
5959
merge-multiple: true
6060

6161
- name: Generate artifact attestations
62-
uses: actions/attest-build-provenance@977bb373ede98d70efdf65b84cb5f73e068dcc2a # v3.0.0
62+
uses: actions/attest-build-provenance@00014ed6ed5efc5b1ab7f7f34a39eb55d41aa4f8 # v3.1.0
6363
with:
6464
subject-path: "dist/*"
6565

.github/workflows/test_report.yml

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

1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: dorny/test-reporter@v2.2.0
16+
- uses: dorny/test-reporter@v2.3.0
1717
with:
1818
artifact: test-results-${{ matrix.python-version }}
1919
name: Test report - ${{ matrix.python-version }}
@@ -28,7 +28,7 @@ jobs:
2828

2929
runs-on: ubuntu-latest
3030
steps:
31-
- uses: dorny/test-reporter@v2.2.0
31+
- uses: dorny/test-reporter@v2.3.0
3232
with:
3333
artifact: test_typedoc-results-${{ matrix.python-version }}-${{ matrix.typedoc-version }}
3434
name: Test report - Python ${{ matrix.python-version}} + typedoc ${{ matrix.typedoc-version }}
@@ -43,7 +43,7 @@ jobs:
4343

4444
runs-on: ubuntu-latest
4545
steps:
46-
- uses: dorny/test-reporter@v2.2.0
46+
- uses: dorny/test-reporter@v2.3.0
4747
with:
4848
artifact: test_sphinx_6-${{ matrix.python-version }}
4949
name: Test report - Sphinx 6

0 commit comments

Comments
 (0)