Skip to content

Commit c2c3510

Browse files
Bump the actions group with 7 updates (#198)
* Bump the actions group with 7 updates Bumps the actions group with 7 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `3` | `4` | | [actions/setup-python](https://github.com/actions/setup-python) | `4` | `5` | | [supercharge/mongodb-github-action](https://github.com/supercharge/mongodb-github-action) | `1.3.0` | `1.10.0` | | [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action) | `2` | `3` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `3` | `4` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `3` | `4` | | [pre-commit/action](https://github.com/pre-commit/action) | `2.0.0` | `3.0.0` | Updates `actions/checkout` from 3 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) Updates `actions/setup-python` from 4 to 5 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v4...v5) Updates `supercharge/mongodb-github-action` from 1.3.0 to 1.10.0 - [Release notes](https://github.com/supercharge/mongodb-github-action/releases) - [Changelog](https://github.com/supercharge/mongodb-github-action/blob/main/CHANGELOG.md) - [Commits](supercharge/mongodb-github-action@1.3.0...1.10.0) Updates `docker/setup-qemu-action` from 2 to 3 - [Release notes](https://github.com/docker/setup-qemu-action/releases) - [Commits](docker/setup-qemu-action@v2...v3) Updates `actions/upload-artifact` from 3 to 4 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v3...v4) Updates `actions/download-artifact` from 3 to 4 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v3...v4) Updates `pre-commit/action` from 2.0.0 to 3.0.0 - [Release notes](https://github.com/pre-commit/action/releases) - [Commits](pre-commit/action@v2.0.0...v3.0.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: supercharge/mongodb-github-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: docker/setup-qemu-action dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: pre-commit/action dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]> * fix artifact name usage * fix upload --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Steven Silvester <[email protected]>
1 parent 3276c96 commit c2c3510

File tree

3 files changed

+20
-20
lines changed

3 files changed

+20
-20
lines changed

.github/workflows/benchmark.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ jobs:
2121
python-version: ["3.10"]
2222
fail-fast: false
2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525
- name: Setup Python
26-
uses: actions/setup-python@v4
26+
uses: actions/setup-python@v5
2727
with:
2828
python-version: ${{ matrix.python-version }}
2929
cache: 'pip'
3030
cache-dependency-path: '**/setup.cfg'
3131
- name: Start MongoDB
32-
uses: supercharge/mongodb-github-action@1.9.0
32+
uses: supercharge/mongodb-github-action@1.10.0
3333
with:
3434
mongodb-version: 6.0
3535
- name: Install tox

.github/workflows/release-python.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646

4747
steps:
4848
- name: Checkout pymongoarrow
49-
uses: actions/checkout@v3
49+
uses: actions/checkout@v4
5050
with:
5151
fetch-depth: 0
5252

@@ -55,7 +55,7 @@ jobs:
5555
export PYTHON_VERSION=$(sed 's/^cp3/3./' <<< ${{ matrix.python }} )
5656
echo "PYTHON_VERSION=$PYTHON_VERSION" >> $GITHUB_ENV
5757
58-
- uses: actions/setup-python@v4
58+
- uses: actions/setup-python@v5
5959
with:
6060
python-version: ${{env.PYTHON_VERSION}}
6161
cache: 'pip'
@@ -64,7 +64,7 @@ jobs:
6464

6565
- name: Set up QEMU
6666
if: runner.os == 'Linux'
67-
uses: docker/setup-qemu-action@v2
67+
uses: docker/setup-qemu-action@v3
6868
with:
6969
platforms: all
7070

@@ -97,7 +97,7 @@ jobs:
9797
MACOSX_DEPLOYMENT_TARGET: "10.14"
9898
run: python -m cibuildwheel --output-dir wheelhouse
9999

100-
- uses: actions/upload-artifact@v3
100+
- uses: actions/upload-artifact@v4
101101
with:
102102
name: ${{ matrix.python }}-${{ startsWith(matrix.buildplat[1], 'macosx') && 'macosx' || matrix.buildplat[1] }}
103103
path: ./bindings/python/wheelhouse/*.whl
@@ -107,11 +107,11 @@ jobs:
107107
name: Make SDist
108108
runs-on: macos-latest
109109
steps:
110-
- uses: actions/checkout@v3
110+
- uses: actions/checkout@v4
111111
with:
112112
fetch-depth: 0
113113

114-
- uses: actions/setup-python@v4
114+
- uses: actions/setup-python@v5
115115
with:
116116
# Build sdist on lowest supported Python
117117
python-version: '3.8'
@@ -136,7 +136,7 @@ jobs:
136136
cd ..
137137
python -c "from pymongoarrow.lib import process_bson_stream"
138138
139-
- uses: actions/upload-artifact@v3
139+
- uses: actions/upload-artifact@v4
140140
with:
141141
name: "sdist"
142142
path: ./bindings/python/dist/*.tar.gz
@@ -147,15 +147,15 @@ jobs:
147147
name: Download Wheels
148148
steps:
149149
- name: Download all workflow run artifacts
150-
uses: actions/download-artifact@v3
150+
uses: actions/download-artifact@v4
151151
- name: Flatten directory
152152
working-directory: .
153153
run: |
154154
find . -mindepth 2 -type f -exec mv {} . \;
155155
find . -type d -empty -delete
156-
- uses: actions/upload-artifact@v3
156+
- uses: actions/upload-artifact@v4
157157
with:
158-
name: all-dist-${{ github.head_ref || github.ref_name }}
158+
name: all-dist-${{ github.job }}
159159
path: "./*"
160160

161161
publish:
@@ -168,9 +168,9 @@ jobs:
168168
id-token: write
169169
steps:
170170
- name: Download all the dists
171-
uses: actions/download-artifact@v3
171+
uses: actions/download-artifact@v4
172172
with:
173-
name: all-dist-${{ github.head_ref || github.ref_name }}
173+
name: all-dist-${{ github.job }}
174174
path: dist/
175175
- name: Publish distribution 📦 to PyPI
176176
uses: pypa/gh-action-pypi-publish@release/v1

.github/workflows/test-python.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ jobs:
2222

2323
steps:
2424
- uses: actions/checkout@v4
25-
- uses: actions/setup-python@v4
26-
- uses: pre-commit/action@v2.0.0
25+
- uses: actions/setup-python@v5
26+
- uses: pre-commit/action@v3.0.0
2727
with:
2828
extra_args: --all-files --hook-stage=manual
2929

@@ -39,7 +39,7 @@ jobs:
3939
steps:
4040
- uses: actions/checkout@v4
4141
- name: Setup Python
42-
uses: actions/setup-python@v4
42+
uses: actions/setup-python@v5
4343
with:
4444
python-version: ${{ matrix.python-version }}
4545
cache: 'pip'
@@ -50,7 +50,7 @@ jobs:
5050
echo "LD_LIBRARY_PATH=$PWD/libbson/lib" >> $GITHUB_ENV
5151
- name: Start MongoDB on Linux
5252
if: ${{ startsWith(runner.os, 'Linux') }}
53-
uses: supercharge/mongodb-github-action@1.3.0
53+
uses: supercharge/mongodb-github-action@1.10.0
5454
with:
5555
mongodb-version: 4.4
5656
mongodb-replica-set: test-rs
@@ -91,7 +91,7 @@ jobs:
9191
steps:
9292
- uses: actions/checkout@v4
9393
- name: Setup Python
94-
uses: actions/setup-python@v4
94+
uses: actions/setup-python@v5
9595
with:
9696
python-version: 3.9
9797
cache: 'pip'

0 commit comments

Comments
 (0)