Skip to content

Commit 1e1ffc7

Browse files
Bump the github-actions group with 2 updates
Bumps the github-actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 4.2.2 to 5.0.0 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4.2.2...v5.0.0) Updates `actions/download-artifact` from 4.3.0 to 5.0.0 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4.3.0...v5.0.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 5411426 commit 1e1ffc7

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
SETUPTOOLS_SCM_PRETEND_VERSION: ${{ github.event.inputs.version }}
1717

1818
steps:
19-
- uses: actions/checkout@v4.2.2
19+
- uses: actions/checkout@v5.0.0
2020

2121
- name: Build and Check Package
2222
uses: hynek/[email protected]
@@ -30,10 +30,10 @@ jobs:
3030
contents: write # For tag and release notes.
3131

3232
steps:
33-
- uses: actions/checkout@v4.2.2
33+
- uses: actions/checkout@v5.0.0
3434

3535
- name: Download Package
36-
uses: actions/download-artifact@v4.3.0
36+
uses: actions/download-artifact@v5.0.0
3737
with:
3838
name: Packages
3939
path: dist

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
gtest_ver: [ "1.11.0" ]
2626

2727
steps:
28-
- uses: actions/checkout@v4.2.2
28+
- uses: actions/checkout@v5.0.0
2929
- name: Set up Python
3030
uses: actions/[email protected]
3131
with:
@@ -64,7 +64,7 @@ jobs:
6464
package:
6565
runs-on: ubuntu-latest
6666
steps:
67-
- uses: actions/checkout@v4.2.2
67+
- uses: actions/checkout@v5.0.0
6868
- name: Build and Check Package
6969
uses: hynek/[email protected]
7070

@@ -78,20 +78,20 @@ jobs:
7878
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
7979

8080
steps:
81-
- uses: actions/checkout@v4.2.2
81+
- uses: actions/checkout@v5.0.0
8282
- name: Set up Python
8383
uses: actions/[email protected]
8484
with:
8585
python-version: ${{ matrix.python }}
8686

8787
- name: Download compiled tests
88-
uses: actions/download-artifact@v4.3.0
88+
uses: actions/download-artifact@v5.0.0
8989
with:
9090
name: tests
9191
path: tests
9292

9393
- name: Download Package
94-
uses: actions/download-artifact@v4.3.0
94+
uses: actions/download-artifact@v5.0.0
9595
with:
9696
name: Packages
9797
path: dist

0 commit comments

Comments
 (0)