Skip to content

Commit a2db6b6

Browse files
Bump the actions group with 2 updates
Bumps the 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 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/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) --- 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/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 48a91c1 commit a2db6b6

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Check out Git repository
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
- name: Lint with Flake8
2121
run: |
2222
python3 -m venv .venv
@@ -31,7 +31,7 @@ jobs:
3131
runs-on: ubuntu-latest
3232
steps:
3333
- name: Check out Git repository
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v5
3535
- name: Run tests
3636
run: |
3737
python3 -m venv .venv
@@ -51,10 +51,10 @@ jobs:
5151
runs-on: ubuntu-latest
5252
steps:
5353
- name: Check out Git repository
54-
uses: actions/checkout@v4
54+
uses: actions/checkout@v5
5555

5656
- name: Check out siliconcompiler Git repository
57-
uses: actions/checkout@v4
57+
uses: actions/checkout@v5
5858
with:
5959
repository: siliconcompiler/siliconcompiler
6060
path: siliconcompiler
@@ -83,7 +83,7 @@ jobs:
8383
container: ghcr.io/siliconcompiler/sc_runner:latest
8484
steps:
8585
- name: Check out Git repository
86-
uses: actions/checkout@v4
86+
uses: actions/checkout@v5
8787
- name: Run tests
8888
run: |
8989
python3 -m venv .venv

.github/workflows/wheels.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616
with:
1717
submodules: true
1818
- uses: hynek/build-and-inspect-python-package@v2
@@ -25,7 +25,7 @@ jobs:
2525
if: github.event_name == 'release' && github.event.action == 'published'
2626

2727
steps:
28-
- uses: actions/download-artifact@v4
28+
- uses: actions/download-artifact@v5
2929
with:
3030
name: Packages
3131
path: dist
@@ -41,7 +41,7 @@ jobs:
4141
contents: write
4242

4343
steps:
44-
- uses: actions/download-artifact@v4
44+
- uses: actions/download-artifact@v5
4545
with:
4646
name: Packages
4747
path: dist

0 commit comments

Comments
 (0)