File tree 7 files changed +29
-8
lines changed
7 files changed +29
-8
lines changed Original file line number Diff line number Diff line change 14
14
build :
15
15
runs-on : ubuntu-latest
16
16
steps :
17
- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
17
+ - uses : actions/checkout@v4.2.2
18
18
- name : Build the Docker image
19
19
run : docker build . --file Dockerfile --platform linux/amd64
Original file line number Diff line number Diff line change 15
15
contents : write
16
16
steps :
17
17
- name : Checkout Repo
18
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
18
+ uses : actions/checkout@v4.2.2
19
19
20
20
- name : version
21
21
id : version
Original file line number Diff line number Diff line change 20
20
matrix :
21
21
python-version : [3.11, 3.12]
22
22
steps :
23
- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
23
+ - uses : actions/checkout@v4.2.2
24
24
- name : Set up Python ${{ matrix.python-version }}
25
- uses : actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b
25
+ uses : actions/setup-python@v5.3.0
26
26
with :
27
27
python-version : ${{ matrix.python-version }}
28
28
- name : Install dependencies
Original file line number Diff line number Diff line change 60
60
registry : ${{ env.REGISTRY }}
61
61
username : ${{ github.actor }}
62
62
password : ${{ secrets.GITHUB_TOKEN }}
63
- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
63
+ - uses : actions/checkout@v4.2.2
64
64
- name : Push Docker Image
65
65
if : ${{ success() }}
66
66
uses : docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75
Original file line number Diff line number Diff line change 25
25
26
26
steps :
27
27
- name : " Checkout code"
28
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
28
+ uses : actions/checkout@v4.2.2
29
29
with :
30
30
persist-credentials : false
31
31
36
36
results_format : sarif
37
37
publish_results : true
38
38
- name : " Upload artifact"
39
- uses : actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
39
+ uses : actions/upload-artifact@v4.4.3
40
40
with :
41
41
name : SARIF file
42
42
path : results.sarif
Original file line number Diff line number Diff line change
1
+ name : " Close stale issues"
2
+ on :
3
+ schedule :
4
+ - cron : " 30 1 * * *"
5
+
6
+ permissions :
7
+ issues : write
8
+ pull-requests : read
9
+
10
+ jobs :
11
+ stale :
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - uses : actions/stale@v9.0.0
15
+ with :
16
+ stale-issue-message : " This issue is stale because it has been open 21 days with no activity. Remove stale label or comment or this will be closed in 14 days."
17
+ close-issue-message : " This issue was closed because it has been stalled for 35 days with no activity."
18
+ days-before-stale : 21
19
+ days-before-close : 14
20
+ days-before-pr-close : -1
21
+ exempt-issue-labels : keep
Original file line number Diff line number Diff line change 18
18
statuses : write
19
19
steps :
20
20
- name : Checkout Code
21
- uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
21
+ uses : actions/checkout@v4.2.2
22
22
with :
23
23
fetch-depth : 0
24
24
- name : Install dependencies
You can’t perform that action at this time.
0 commit comments