Skip to content

Commit c8bb0f8

Browse files
dependabot[bot]zariiii9003
authored andcommitted
Bump the github-actions group with 3 updates
Bumps the github-actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) and [coverallsapp/github-action](https://github.com/coverallsapp/github-action). Updates `actions/checkout` from 5.0.0 to 6.0.0 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@08c6903...1af3b93) Updates `astral-sh/setup-uv` from 7.1.2 to 7.1.4 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@8585678...1e862df) Updates `coverallsapp/github-action` from 2.3.6 to 2.3.7 - [Release notes](https://github.com/coverallsapp/github-action/releases) - [Commits](coverallsapp/github-action@648a8eb...5cbfd81) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: astral-sh/setup-uv dependency-version: 7.1.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: coverallsapp/github-action dependency-version: 2.3.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent d48dcb8 commit c8bb0f8

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ jobs:
3333
]
3434
fail-fast: false
3535
steps:
36-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # 5.0.0
36+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0
3737
with:
3838
fetch-depth: 0
3939
persist-credentials: false
4040
- name: Install uv
41-
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # 7.1.2
41+
uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # 7.1.4
4242
- name: Install tox
4343
run: uv tool install tox --with tox-uv
4444
- name: Setup SocketCAN
@@ -55,7 +55,7 @@ jobs:
5555
# See: https://github.com/pypy/pypy/issues/3808
5656
TEST_SOCKETCAN: "${{ matrix.os == 'ubuntu-latest' && ! startsWith(matrix.env, 'pypy' ) }}"
5757
- name: Coveralls Parallel
58-
uses: coverallsapp/github-action@648a8eb78e6d50909eff900e4ec85cab4524a45b # 2.3.6
58+
uses: coverallsapp/github-action@5cbfd81b66ca5d10c19b062c04de0199c215fb6e # 2.3.7
5959
with:
6060
github-token: ${{ secrets.github_token }}
6161
flag-name: Unittests-${{ matrix.os }}-${{ matrix.env }}
@@ -66,25 +66,25 @@ jobs:
6666
needs: test
6767
runs-on: ubuntu-latest
6868
steps:
69-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # 5.0.0
69+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0
7070
with:
7171
fetch-depth: 0
7272
persist-credentials: false
7373
- name: Coveralls Finished
74-
uses: coverallsapp/github-action@648a8eb78e6d50909eff900e4ec85cab4524a45b # 2.3.6
74+
uses: coverallsapp/github-action@5cbfd81b66ca5d10c19b062c04de0199c215fb6e # 2.3.7
7575
with:
7676
github-token: ${{ secrets.github_token }}
7777
parallel-finished: true
7878

7979
static-code-analysis:
8080
runs-on: ubuntu-latest
8181
steps:
82-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # 5.0.0
82+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0
8383
with:
8484
fetch-depth: 0
8585
persist-credentials: false
8686
- name: Install uv
87-
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # 7.1.2
87+
uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # 7.1.4
8888
- name: Install tox
8989
run: uv tool install tox --with tox-uv
9090
- name: Run linters
@@ -97,12 +97,12 @@ jobs:
9797
docs:
9898
runs-on: ubuntu-latest
9999
steps:
100-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # 5.0.0
100+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0
101101
with:
102102
fetch-depth: 0
103103
persist-credentials: false
104104
- name: Install uv
105-
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # 7.1.2
105+
uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # 7.1.4
106106
- name: Install tox
107107
run: uv tool install tox --with tox-uv
108108
- name: Build documentation
@@ -113,12 +113,12 @@ jobs:
113113
name: Packaging
114114
runs-on: ubuntu-latest
115115
steps:
116-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # 5.0.0
116+
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # 6.0.0
117117
with:
118118
fetch-depth: 0
119119
persist-credentials: false
120120
- name: Install uv
121-
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # 7.1.2
121+
uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # 7.1.4
122122
- name: Build wheel and sdist
123123
run: uv build
124124
- name: Check build artifacts

0 commit comments

Comments
 (0)