Skip to content

Commit ccce772

Browse files
Merge pull request #7 from pythonbpf/dependabot/github_actions/actions-c546836014
Bump the actions group across 1 directory with 5 updates
2 parents 9a54aed + 13554e9 commit ccce772

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: Format
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919
- uses: actions/setup-python@v6
2020
with:
2121
python-version: "3.x"

.github/workflows/pip.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020
- name: Checkout code
21-
uses: actions/checkout@v5
21+
uses: actions/checkout@v6
2222
with:
2323
submodules: recursive
2424

@@ -32,7 +32,7 @@ jobs:
3232
ls -la libbpf/src/ || echo "libbpf/src not found!"
3333
3434
- name: Set up Python ${{ matrix.python-version }}
35-
uses: actions/setup-python@v5
35+
uses: actions/setup-python@v6
3636
with:
3737
python-version: ${{ matrix.python-version }}
3838

.github/workflows/wheels.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: Build SDist
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919
with:
2020
submodules: recursive
2121

@@ -25,7 +25,7 @@ jobs:
2525
- name: Check metadata
2626
run: pipx run twine check dist/*
2727

28-
- uses: actions/upload-artifact@v4
28+
- uses: actions/upload-artifact@v5
2929
with:
3030
name: cibw-sdist
3131
path: dist/*.tar.gz
@@ -39,12 +39,12 @@ jobs:
3939
arch: [x86_64]
4040

4141
steps:
42-
- uses: actions/checkout@v5
42+
- uses: actions/checkout@v6
4343
with:
4444
submodules: recursive
4545

4646
- name: Build wheels
47-
uses: pypa/cibuildwheel@v3.2
47+
uses: pypa/cibuildwheel@v3.3
4848
env:
4949
CIBW_PLATFORM: linux
5050
CIBW_ARCHS_LINUX: ${{ matrix.arch }}
@@ -65,7 +65,7 @@ jobs:
6565
shell: bash
6666

6767
- name: Upload wheels
68-
uses: actions/upload-artifact@v4
68+
uses: actions/upload-artifact@v5
6969
with:
7070
name: cibw-wheels-linux-${{ matrix.arch }}
7171
path: wheelhouse/*.whl
@@ -82,7 +82,7 @@ jobs:
8282

8383
steps:
8484
- name: Download all artifacts
85-
uses: actions/download-artifact@v5
85+
uses: actions/download-artifact@v6
8686
with:
8787
pattern: cibw-*
8888
path: dist

0 commit comments

Comments
 (0)