Skip to content

Commit a3c7056

Browse files
Bump the gh-actions group with 5 updates (#286)
Bumps the gh-actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `5` | | [prefix-dev/setup-pixi](https://github.com/prefix-dev/setup-pixi) | `0.8.14` | `0.9.1` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `5` | | [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) | `1.12.4` | `1.13.0` | | [isbang/compose-action](https://github.com/isbang/compose-action) | `2.3.0` | `2.4.0` | Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Commits](actions/checkout@v4...v5) Updates `prefix-dev/setup-pixi` from 0.8.14 to 0.9.1 - [Release notes](https://github.com/prefix-dev/setup-pixi/releases) - [Commits](prefix-dev/setup-pixi@v0.8.14...v0.9.1) Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) Updates `pypa/gh-action-pypi-publish` from 1.12.4 to 1.13.0 - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](pypa/gh-action-pypi-publish@76f52bc...ed0c539) Updates `isbang/compose-action` from 2.3.0 to 2.4.0 - [Release notes](https://github.com/isbang/compose-action/releases) - [Commits](hoverkraft-tech/compose-action@40041ff...b716db5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-actions - dependency-name: prefix-dev/setup-pixi dependency-version: 0.9.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gh-actions - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: gh-actions - dependency-name: pypa/gh-action-pypi-publish dependency-version: 1.13.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gh-actions - dependency-name: isbang/compose-action dependency-version: 2.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: gh-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 5a40883 commit a3c7056

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.github/workflows/nightly_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
outputs:
1313
should-run: ${{ steps.should-run.outputs.should-run }}
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616

1717
- name: check if latest commit is within 24 hrs
1818
id: should-run

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout branch
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818

1919
- name: Set up pixi
20-
uses: prefix-dev/setup-pixi@v0.8.14
20+
uses: prefix-dev/setup-pixi@v0.9.1
2121
with:
2222
environments: release
2323

@@ -63,12 +63,12 @@ jobs:
6363
contents: write
6464
environment: pypi
6565
steps:
66-
- uses: actions/download-artifact@v4
66+
- uses: actions/download-artifact@v5
6767
with:
6868
name: artifact
6969
path: dist
7070
- name: Publish package on PyPi
71-
uses: pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc # v1.12.4
71+
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # v1.13.0
7272
with:
7373
# the twine version in the container is outdated
7474
# and results in a false positive

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,16 @@ jobs:
3333
runs-on: ${{ inputs.os }}
3434
timeout-minutes: ${{ inputs.timeout-minutes }}
3535
steps:
36-
- uses: actions/checkout@v4
36+
- uses: actions/checkout@v5
3737

3838
- name: Setup Pixi
39-
uses: prefix-dev/setup-pixi@v0.8.14
39+
uses: prefix-dev/setup-pixi@v0.9.1
4040
with:
4141
environments: ${{ inputs.environment }}
4242

4343
- name: Start Docker Compose
4444
if: ${{ inputs.docker-services != '' }}
45-
uses: isbang/compose-action@40041ff1b97dbf152cd2361138c2b03fa29139df
45+
uses: isbang/compose-action@b716db5b717cb9b81e391fe638e5aceaa2299e43
4646
with:
4747
compose-file: docker-compose.yaml
4848
services: ${{ inputs.docker-services }}

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ jobs:
2424
runs-on: ubuntu-latest
2525
steps:
2626
- name: Checkout branch
27-
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
27+
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v4.2.1
2828
- name: Set up pixi
29-
uses: prefix-dev/setup-pixi@8ca4608ef7f4daeb54f5205b20d0b7cb42f11143 # v0.8.1
29+
uses: prefix-dev/setup-pixi@194d461b21b6c5717c722ffc597fa91ed2ff29fa # v0.8.1
3030
- name: Install repository
3131
# needed for generate-col-ops hook
3232
run: pixi run postinstall

.github/workflows/update-lockfiles.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
pixi-update:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717
- name: Set up pixi
18-
uses: prefix-dev/setup-pixi@v0.8.14
18+
uses: prefix-dev/setup-pixi@v0.9.1
1919
with:
2020
run-install: false
2121
- name: Update lockfiles

0 commit comments

Comments
 (0)