Skip to content

Commit da227b8

Browse files
Bump the all-actions group across 1 directory with 4 updates
Bumps the all-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 [pypa/gh-action-pip-audit](https://github.com/pypa/gh-action-pip-audit). Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) 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 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v6) Updates `pypa/gh-action-pip-audit` from 1.0.8 to 1.1.0 - [Release notes](https://github.com/pypa/gh-action-pip-audit/releases) - [Commits](pypa/gh-action-pip-audit@v1.0.8...v1.1.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: pypa/gh-action-pip-audit dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent cb11026 commit da227b8

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ jobs:
6262
runs-on: ${{ matrix.os }}
6363
steps:
6464
- name: Checkout
65-
uses: actions/checkout@v4
65+
uses: actions/checkout@v6
6666

6767
- name: Set up Python ${{ matrix.python-version }}
68-
uses: actions/setup-python@v5
68+
uses: actions/setup-python@v6
6969
with:
7070
python-version: ${{ matrix.python-version }}
7171

@@ -80,7 +80,7 @@ jobs:
8080
toolchain: ${{ matrix.toolchain || env.RUST_VERSION }}
8181

8282
- name: Checkout library
83-
uses: actions/checkout@v4
83+
uses: actions/checkout@v6
8484
with:
8585
repository: "hyperledger/indy-blssignatures-rs"
8686
path: "build"
@@ -124,7 +124,7 @@ jobs:
124124
grep -q manylinux_2_17_ auditwheel.log
125125
126126
- name: Upload artifacts
127-
uses: actions/upload-artifact@v4
127+
uses: actions/upload-artifact@v6
128128
with:
129129
name: python-${{ matrix.plat-name }}
130130
path: dist/*

.github/workflows/pip-audit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ jobs:
1010
selftest:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v6
1414
- name: install
1515
run: |
1616
python -m venv env/
1717
source env/bin/activate
1818
python -m pip install --upgrade pip
1919
python -m pip install .
20-
- uses: pypa/gh-action-pip-audit@v1.0.8
20+
- uses: pypa/gh-action-pip-audit@v1.1.0
2121
with:
2222
virtual-environment: env/
2323
local: true

0 commit comments

Comments
 (0)