File tree 11 files changed +15
-15
lines changed
11 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 11
11
permissions :
12
12
contents : write
13
13
pull-requests : write
14
- uses : github/ospo-reusable-workflows/.github/workflows/auto-labeler.yaml@6a0a6d0de2227f9d5d11af90a87b2e2fd6b5463d
14
+ uses : github/ospo-reusable-workflows/.github/workflows/auto-labeler.yaml@ecdd405ebb379e0713e348440e6e26e85fc06773
15
15
with :
16
16
config-name : release-drafter.yml
17
17
secrets :
Original file line number Diff line number Diff line change 27
27
echo "END_DATE=$end_date" >> "$GITHUB_ENV"
28
28
29
29
- name : Run contributor action
30
- uses : github/contributors@1f903d4eba7d5318fea1ad9500d53370599bf9b8 # v1.5.5
30
+ uses : github/contributors@ed5a1f1c7c0038f4c9ad790685b6b8a549ab3f64 # v1.5.6
31
31
env :
32
32
GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
33
33
START_DATE : ${{ env.START_DATE }}
Original file line number Diff line number Diff line change 30
30
run : |
31
31
pip install -r requirements.txt -r requirements-test.txt
32
32
- name : Lint Code Base
33
- uses : super-linter/super-linter@85f7611e0f7b53c8573cca84aa0ed4344f6f6a4d # v7.2.1
33
+ uses : super-linter/super-linter@4e8a7c2bf106c4c766c816b35ec612638dc9b6b2 # v7.3.0
34
34
env :
35
35
DEFAULT_BRANCH : main
36
36
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 12
12
contents : read
13
13
pull-requests : read
14
14
statuses : write
15
- uses : github/ospo-reusable-workflows/.github/workflows/pr-title.yaml@6a0a6d0de2227f9d5d11af90a87b2e2fd6b5463d
15
+ uses : github/ospo-reusable-workflows/.github/workflows/pr-title.yaml@ecdd405ebb379e0713e348440e6e26e85fc06773
16
16
secrets :
17
17
github-token : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 12
12
permissions :
13
13
contents : write
14
14
pull-requests : read
15
- uses : github/ospo-reusable-workflows/.github/workflows/release.yaml@6a0a6d0de2227f9d5d11af90a87b2e2fd6b5463d
15
+ uses : github/ospo-reusable-workflows/.github/workflows/release.yaml@ecdd405ebb379e0713e348440e6e26e85fc06773
16
16
with :
17
17
publish : true
18
18
release-config-name : release-drafter.yml
25
25
packages : write
26
26
id-token : write
27
27
attestations : write
28
- uses : github/ospo-reusable-workflows/.github/workflows/release-image.yaml@6a0a6d0de2227f9d5d11af90a87b2e2fd6b5463d
28
+ uses : github/ospo-reusable-workflows/.github/workflows/release-image.yaml@ecdd405ebb379e0713e348440e6e26e85fc06773
29
29
with :
30
30
image-name : ${{ github.repository_owner }}/issue_metrics
31
31
full-tag : ${{ needs.release.outputs.full-tag }}
40
40
permissions :
41
41
contents : read
42
42
discussions : write
43
- uses : github/ospo-reusable-workflows/.github/workflows/release-discussion.yaml@6a0a6d0de2227f9d5d11af90a87b2e2fd6b5463d
43
+ uses : github/ospo-reusable-workflows/.github/workflows/release-discussion.yaml@ecdd405ebb379e0713e348440e6e26e85fc06773
44
44
with :
45
45
full-tag : ${{ needs.release.outputs.full-tag }}
46
46
body : ${{ needs.release.outputs.body }}
Original file line number Diff line number Diff line change @@ -30,18 +30,18 @@ jobs:
30
30
persist-credentials : false
31
31
32
32
- name : " Run analysis"
33
- uses : ossf/scorecard-action@62b2cac7ed8198b15735ed49ab1e5cf35480ba46 # v2.4.0
33
+ uses : ossf/scorecard-action@f49aabe0b5af0936a0987cfb85d86b75731b0186 # v2.4.1
34
34
with :
35
35
results_file : results.sarif
36
36
results_format : sarif
37
37
publish_results : true
38
38
- name : " Upload artifact"
39
-
39
+
40
40
with :
41
41
name : SARIF file
42
42
path : results.sarif
43
43
retention-days : 5
44
44
- name : " Upload to code-scanning"
45
- uses : github/codeql-action/upload-sarif@9e8d0789d4a0fa9ceb6b1738f7e269594bdd67f0 # v3.24.9
45
+ uses : github/codeql-action/upload-sarif@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # v3.24.9
46
46
with :
47
47
sarif_file : results.sarif
Original file line number Diff line number Diff line change 1
- """ Functions for calculating time spent in labels. """
1
+ """Functions for calculating time spent in labels."""
2
2
3
3
from datetime import datetime , timedelta
4
4
from typing import List
Original file line number Diff line number Diff line change 1
- """ Helper functions for working with markdown files. """
1
+ """Helper functions for working with markdown files."""
2
2
3
3
4
4
def markdown_too_large_for_issue_body (file_path : str , max_char_count : int ) -> bool :
Original file line number Diff line number Diff line change 1
- """ A module to search for issues in a GitHub repository."""
1
+ """A module to search for issues in a GitHub repository."""
2
2
3
3
import sys
4
4
from time import sleep
Original file line number Diff line number Diff line change 1
- """ Unit tests for labels.py """
1
+ """Unit tests for labels.py"""
2
2
3
3
import unittest
4
4
from datetime import datetime , timedelta
Original file line number Diff line number Diff line change 1
- """ Unit tests for the markdown_helpers module. """
1
+ """Unit tests for the markdown_helpers module."""
2
2
3
3
import os
4
4
import unittest
You can’t perform that action at this time.
0 commit comments