File tree 6 files changed +27
-15
lines changed
6 files changed +27
-15
lines changed Original file line number Diff line number Diff line change @@ -11,10 +11,10 @@ jobs:
11
11
runs-on : ubuntu-latest
12
12
steps :
13
13
- name : Check out code
14
- uses : actions/checkout@v4
14
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
15
15
16
16
- name : Run EoL & NewRelease check
17
- uses : actions/github-script@v7
17
+ uses : actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
18
18
with :
19
19
script : |
20
20
const checkEolAndNewReleases = require('.github/scripts/check-eol-newrelease.cjs');
Original file line number Diff line number Diff line change 12
12
issues : write
13
13
pull-requests : write
14
14
steps :
15
- - uses : actions/stale@v9
15
+ - uses : actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0
16
16
with :
17
17
days-before-issue-stale : 14
18
18
days-before-issue-close : 0
Original file line number Diff line number Diff line change @@ -43,10 +43,10 @@ jobs:
43
43
needs : validate-input
44
44
45
45
steps :
46
- - uses : actions/checkout@v4
46
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
47
47
- name : Fetch Latest Release
48
48
id : get-latest-release
49
- uses : actions/github-script@v7
49
+ uses : actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
50
50
with :
51
51
script : |
52
52
const latestRelease = await github.rest.repos.getLatestRelease({
62
62
63
63
- name : Calculate New Version
64
64
id : calculate-version
65
- uses : actions/github-script@v7
65
+ uses : actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
66
66
with :
67
67
script : |
68
68
const latestTag = '${{ steps.get-latest-release.outputs.latest_tag }}';
83
83
84
84
- name : Generate Release Notes
85
85
id : generate-release-notes
86
- uses : actions/github-script@v7
86
+ uses : actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
87
87
with :
88
88
script : |
89
89
const { data: releaseNotes } = await github.rest.repos.generateReleaseNotes({
Original file line number Diff line number Diff line change @@ -13,19 +13,19 @@ jobs:
13
13
14
14
steps :
15
15
- name : Setup
16
- uses : actions/checkout@v4
16
+ uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
17
17
with :
18
18
submodules : recursive
19
19
- name : Update submodules
20
20
run : git submodule update --remote --recursive
21
21
22
22
- name : Set up Python
23
- uses : actions/setup-python@v5
23
+ uses : actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
24
24
with :
25
25
python-version : ' 3.x'
26
- - uses : actions/setup-node@v4
26
+ - uses : actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
27
27
- name : Set up Go
28
- uses : actions/setup-go@v5
28
+ uses : actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
29
29
with :
30
30
go-version : ' 1.24'
31
31
- name : Install goimports
Original file line number Diff line number Diff line change @@ -17,17 +17,17 @@ jobs:
17
17
- ' 1.22'
18
18
- ' 1.23'
19
19
steps :
20
- - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
20
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
21
21
with :
22
22
submodules : true
23
23
24
24
- name : Set up Python
25
- uses : actions/setup-python@v5
25
+ uses : actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55 # v5.5.0
26
26
with :
27
27
python-version : ' 3.x'
28
28
29
29
- name : Set up Go
30
- uses : actions/setup-go@v5
30
+ uses : actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
31
31
with :
32
32
go-version : ${{ matrix.go }}
33
33
55
55
56
56
- name : Publish to codecov.io
57
57
run : bash <(curl -s https://codecov.io/bash)
58
+
59
+ pinact :
60
+ runs-on : ubuntu-latest
61
+ permissions :
62
+ contents : read
63
+ steps :
64
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
65
+ - name : Run pinact
66
+ uses : suzuki-shunsuke/pinact-action@a6896d13d22e2bf108a78b0c52d3f867c1f41b34 # v0.2.1
67
+ with :
68
+ skip_push : " true"
Original file line number Diff line number Diff line change 1
1
{
2
2
"$schema" : "https://docs.renovatebot.com/renovate-schema.json" ,
3
3
"extends" : [
4
- "config:recommended"
4
+ "config:recommended" ,
5
+ "helpers:pinGitHubActionDigestsToSemver"
5
6
] ,
6
7
"timezone" : "Asia/Tokyo" ,
7
8
"automerge" : true ,
You can’t perform that action at this time.
0 commit comments