Skip to content

Commit ca50937

Browse files
ci: Bump the gh-actions group with 4 updates (#311)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Oliver Borchert <oliver.borchert@quantco.com>
1 parent b318270 commit ca50937

5 files changed

Lines changed: 32 additions & 18 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
id-token: write
8282
environment: pypi
8383
steps:
84-
- uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
84+
- uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
8585
with:
8686
path: dist
8787
merge-multiple: true

.github/workflows/chore-main.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Chore
2+
on:
3+
push:
4+
branches: [main]
5+
6+
concurrency:
7+
group: ${{ github.workflow }}-${{ github.ref }}
8+
cancel-in-progress: true
9+
10+
jobs:
11+
draft-release:
12+
name: Draft Release
13+
runs-on: ubuntu-latest
14+
permissions:
15+
contents: write
16+
pull-requests: read
17+
steps:
18+
- name: Update release draft
19+
uses: release-drafter/release-drafter@139054aeaa9adc52ab36ddf67437541f039b88e2 # v7.1.1
20+
with:
21+
token: ${{ github.token }}
Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ on:
33
pull_request_target:
44
branches: [main]
55
types: [opened, reopened, edited, synchronize]
6-
push:
7-
branches: [main]
86

97
concurrency:
108
group: ${{ github.workflow }}-${{ github.ref }}
@@ -13,7 +11,6 @@ concurrency:
1311
jobs:
1412
check-pr-title:
1513
name: Check PR Title
16-
if: github.event_name == 'pull_request_target'
1714
runs-on: ubuntu-latest
1815
permissions:
1916
contents: read
@@ -28,7 +25,7 @@ jobs:
2825
GITHUB_TOKEN: ${{ github.token }}
2926
- name: Post comment about invalid PR title
3027
if: failure()
31-
uses: marocchino/sticky-pull-request-comment@773744901bac0e8cbb5a0dc842800d45e9b2b405 # v2.9.4
28+
uses: marocchino/sticky-pull-request-comment@70d2764d1a7d5d9560b100cbea0077fc8f633987 # v3.0.2
3229
with:
3330
header: conventional-commit-pr-title
3431
message: |
@@ -45,22 +42,18 @@ jobs:
4542
</details>
4643
- name: Delete comment about invalid PR title
4744
if: success()
48-
uses: marocchino/sticky-pull-request-comment@773744901bac0e8cbb5a0dc842800d45e9b2b405 # v2.9.4
45+
uses: marocchino/sticky-pull-request-comment@70d2764d1a7d5d9560b100cbea0077fc8f633987 # v3.0.2
4946
with:
5047
header: conventional-commit-pr-title
5148
delete: true
5249

53-
release-drafter:
54-
name: ${{ github.event_name == 'pull_request_target' && 'Assign Labels' || 'Draft Release' }}
50+
assign-labels:
51+
name: Assign Labels
5552
runs-on: ubuntu-latest
5653
permissions:
57-
contents: write
5854
pull-requests: write
5955
steps:
60-
- name: ${{ github.event_name == 'pull_request_target' && 'Assign labels' || 'Update release draft' }}
61-
uses: release-drafter/release-drafter@6db134d15f3909ccc9eefd369f02bd1e9cffdf97 # v6.2.0
56+
- name: Assign labels
57+
uses: release-drafter/release-drafter/autolabeler@139054aeaa9adc52ab36ddf67437541f039b88e2 # v7.1.1
6258
with:
63-
disable-releaser: ${{ github.event_name == 'pull_request_target' }}
64-
disable-autolabeler: ${{ github.event_name == 'push' }}
65-
env:
66-
GITHUB_TOKEN: ${{ github.token }}
59+
token: ${{ github.token }}

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Install Rust
3131
run: rustup show
3232
- name: Cache Rust dependencies
33-
uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 # v2.8.2
33+
uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 # v2.9.1
3434
- name: pre-commit
3535
run: pixi run pre-commit-run --color=always --show-diff-on-failure
3636

@@ -71,7 +71,7 @@ jobs:
7171
- name: Install Rust
7272
run: rustup show
7373
- name: Cache Rust dependencies
74-
uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 # v2.8.2
74+
uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 # v2.9.1
7575
- name: Install repository
7676
run: pixi run -e ${{ matrix.environment }} postinstall
7777
- name: Run pytest

.github/workflows/copilot-setup-steps.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ jobs:
2121
- name: Install Rust
2222
run: rustup show
2323
- name: Cache Rust dependencies
24-
uses: Swatinem/rust-cache@779680da715d629ac1d338a641029a2f4372abb5 # v2.8.2
24+
uses: Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 # v2.9.1
2525
- name: Install repository
2626
run: pixi run postinstall

0 commit comments

Comments
 (0)