Skip to content

Commit 38a730f

Browse files
ci: bump the ci-updates group across 1 directory with 6 updates (#307)
Bumps the ci-updates group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/cache](https://github.com/actions/cache) | `5.0.4` | `5.0.5` | | [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) | `7.6.0` | `8.1.0` | | [fossas/fossa-action](https://github.com/fossas/fossa-action) | `1.8.0` | `1.9.0` | | [act10ns/slack](https://github.com/act10ns/slack) | `2.1.0` | `2.2.0` | | [py-cov-action/python-coverage-comment-action](https://github.com/py-cov-action/python-coverage-comment-action) | `3.40` | `3.41` | | [pypa/gh-action-pypi-publish](https://github.com/pypa/gh-action-pypi-publish) | `1.13.0` | `1.14.0` | Updates `actions/cache` from 5.0.4 to 5.0.5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@6682284...27d5ce7) Updates `astral-sh/setup-uv` from 7.6.0 to 8.1.0 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@37802ad...0880764) Updates `fossas/fossa-action` from 1.8.0 to 1.9.0 - [Release notes](https://github.com/fossas/fossa-action/releases) - [Commits](fossas/fossa-action@c414b9a...ff70fe9) Updates `act10ns/slack` from 2.1.0 to 2.2.0 - [Release notes](https://github.com/act10ns/slack/releases) - [Changelog](https://github.com/act10ns/slack/blob/master/RELEASE.md) - [Commits](act10ns/slack@4454124...d96404e) Updates `py-cov-action/python-coverage-comment-action` from 3.40 to 3.41 - [Release notes](https://github.com/py-cov-action/python-coverage-comment-action/releases) - [Commits](py-cov-action/python-coverage-comment-action@7188638...63f52f4) Updates `pypa/gh-action-pypi-publish` from 1.13.0 to 1.14.0 - [Release notes](https://github.com/pypa/gh-action-pypi-publish/releases) - [Commits](pypa/gh-action-pypi-publish@ed0c539...cef2210) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 5.0.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: ci-updates - dependency-name: astral-sh/setup-uv dependency-version: 8.1.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci-updates - dependency-name: fossas/fossa-action dependency-version: 1.9.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: ci-updates - dependency-name: act10ns/slack dependency-version: 2.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: ci-updates - dependency-name: py-cov-action/python-coverage-comment-action dependency-version: '3.41' dependency-type: direct:production update-type: version-update:semver-minor dependency-group: ci-updates - dependency-name: pypa/gh-action-pypi-publish dependency-version: 1.14.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: ci-updates ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 6d9fedc commit 38a730f

8 files changed

Lines changed: 18 additions & 18 deletions

File tree

.github/workflows/api-docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
python-version: 3.x
2525

2626
- name: Setup cache
27-
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
27+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
2828
with:
2929
key: ${{ github.ref }}
3030
path: .cache

.github/workflows/compliance.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2020

2121
- name: Install uv
22-
uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0
22+
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
2323
with:
2424
enable-cache: true
2525
python-version: "3.10"
@@ -35,20 +35,20 @@ jobs:
3535
3636
- name: Send license report to Fossa
3737
# This will collect all necessary information (mostly used dependencies) and send it to the Fossa API
38-
uses: fossas/fossa-action@c414b9ad82eaad041e47a7cf62a4f02411f427a0 # Use a specific version if locking is preferred
38+
uses: fossas/fossa-action@ff70fe9fe17cbd2040648f1c45e8ec4e4884dcf3 # Use a specific version if locking is preferred
3939
with:
4040
api-key: ${{ secrets.FOSSA_LICENSE_SCAN_TOKEN }}
4141

4242
- name: Check license compliance
4343
# This will poll the Fossa API until they have processed the information which we've sent in the previous step
4444
# and fail if Fossa found an issue with the licences of our dependencies.
45-
uses: fossas/fossa-action@c414b9ad82eaad041e47a7cf62a4f02411f427a0 # Use a specific version if locking is preferred
45+
uses: fossas/fossa-action@ff70fe9fe17cbd2040648f1c45e8ec4e4884dcf3 # Use a specific version if locking is preferred
4646
with:
4747
api-key: ${{ secrets.FOSSA_LICENSE_SCAN_TOKEN }}
4848
run-tests: true
4949

5050
- name: Send Slack notification if license check failed
51-
uses: act10ns/slack@44541246747a30eb3102d87f7a4cc5471b0ffb7d
51+
uses: act10ns/slack@d96404edccc6d6467fc7f8134a420c851b1e9054
5252
if: failure() && github.ref == 'refs/heads/main'
5353
with:
5454
status: ${{ job.status }}

.github/workflows/continuous-integration.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1616
- name: Install uv
17-
uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0
17+
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
1818
with:
1919
enable-cache: true
2020
python-version: "3.10"
@@ -29,7 +29,7 @@ jobs:
2929
steps:
3030
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3131
- name: Install uv
32-
uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0
32+
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
3333
with:
3434
enable-cache: true
3535
python-version: "3.10"
@@ -44,7 +44,7 @@ jobs:
4444
steps:
4545
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4646
- name: Install uv
47-
uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0
47+
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
4848
with:
4949
enable-cache: true
5050
python-version: "3.10"
@@ -78,7 +78,7 @@ jobs:
7878
# for coverage comment action
7979
fetch-depth: 1000
8080
- name: Install uv
81-
uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0
81+
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
8282
with:
8383
enable-cache: true
8484
python-version: "3.10"
@@ -88,6 +88,6 @@ jobs:
8888
run: make tests-with-cov
8989
- name: Coverage comment
9090
id: coverage_comment
91-
uses: py-cov-action/python-coverage-comment-action@7188638f871f721a365d644f505d1ff3df20d683
91+
uses: py-cov-action/python-coverage-comment-action@63f52f4fbbffada6e8dee8ec432de7e01df9ba79
9292
with:
9393
GITHUB_TOKEN: ${{ github.token }}

.github/workflows/deploy-prod.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2020
- name: Install uv
21-
uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0
21+
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
2222
with:
2323
enable-cache: true
2424
python-version: "3.10"
@@ -28,6 +28,6 @@ jobs:
2828
- name: Build
2929
run: make build
3030
- name: publish
31-
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # v1.13.0
31+
uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b # v1.14.0
3232
with:
3333
repository-url: ${{env.pypi}}

.github/workflows/deploy-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ jobs:
2020
steps:
2121
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2222
- name: Install uv
23-
uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0
23+
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
2424
with:
2525
enable-cache: true
2626
python-version: "3.10"
2727
- name: Build
2828
run: make build
2929
- name: Publish
30-
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # v1.13.0
30+
uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b # v1.14.0
3131
with:
3232
repository-url: ${{ env.pypi }}

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
steps:
2828
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2929
- name: Install uv
30-
uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0
30+
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
3131
with:
3232
enable-cache: true
3333
python-version: "3.10"
@@ -37,6 +37,6 @@ jobs:
3737
- name: Build
3838
run: make build
3939
- name: publish
40-
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # v1.13.0
40+
uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b # v1.14.0
4141
with:
4242
repository-url: ${{env.pypi}}

.github/workflows/high-prio-bug.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Send Slack alert for high priority bug
18-
uses: act10ns/slack@44541246747a30eb3102d87f7a4cc5471b0ffb7d
18+
uses: act10ns/slack@d96404edccc6d6467fc7f8134a420c851b1e9054
1919
with:
2020
status: High Priority Bug
2121
message: High Priority Bug ${{ github.event.issue.html_url }}

.github/workflows/merge-queue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
steps:
4040
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4141
- name: Install uv
42-
uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0
42+
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
4343
with:
4444
enable-cache: true
4545
python-version: "3.10"

0 commit comments

Comments
 (0)