File tree Expand file tree Collapse file tree 6 files changed +16
-16
lines changed Expand file tree Collapse file tree 6 files changed +16
-16
lines changed Original file line number Diff line number Diff line change 19
19
runs-on : ubuntu-latest
20
20
steps :
21
21
- name : " Set Issue to 'Priority = Triage Next'"
22
- uses :
leonsteinhaeuser/[email protected]
22
+ uses : leonsteinhaeuser/project-beta-automations@7f947733020ee03daa363d16ea1223717b132f11 # v2.0.1
23
23
if : github.event_name == 'issues'
24
24
with :
25
25
gh_token : ${{ secrets.TF_DEVEX_PROJECT_GITHUB_TOKEN }}
29
29
operation_mode : custom_field
30
30
custom_field_values : ' [{\"name\":\"Priority\",\"type\":\"single_select\",\"value\":\"Triage Next\"}]'
31
31
- name : " Set Pull Request to 'Priority = Triage Next'"
32
- uses :
leonsteinhaeuser/[email protected]
32
+ uses : leonsteinhaeuser/project-beta-automations@7f947733020ee03daa363d16ea1223717b132f11 # v2.0.1
33
33
if : github.event_name == 'pull_request_target'
34
34
with :
35
35
gh_token : ${{ secrets.TF_DEVEX_PROJECT_GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 8
8
issue_comment_triage :
9
9
runs-on : ubuntu-latest
10
10
steps :
11
- - uses : actions-ecosystem/action-remove-labels@v1
11
+ - uses : actions-ecosystem/action-remove-labels@2ce5d41b4b6aa8503e285553f75ed56e0a40bae0 # v1.3.0
12
12
with :
13
13
labels : |
14
14
stale
Original file line number Diff line number Diff line change 8
8
issue_triage :
9
9
runs-on : ubuntu-latest
10
10
steps :
11
- - uses : actions/checkout@v3
12
- - uses : github/issue-labeler@v2
11
+ - uses : actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
12
+ - uses : github/issue-labeler@6ca237433dbbb8e475241b7f38f4600d9e296c57 # v2.5
13
13
with :
14
14
repo-token : " ${{ secrets.GITHUB_TOKEN }}"
15
15
configuration-path : .github/labeler-issue-triage.yml
Original file line number Diff line number Diff line change @@ -11,11 +11,11 @@ jobs:
11
11
triage :
12
12
runs-on : ubuntu-latest
13
13
steps :
14
- - uses : actions/labeler@v4
14
+ - uses : actions/labeler@5c7539237e04b714afd8ad9b4aed733815b9fab4 # v4.0.2
15
15
with :
16
16
configuration-path : .github/labeler-pull-request-triage.yml
17
17
repo-token : " ${{ secrets.GITHUB_TOKEN }}"
18
- - uses : CodelyTV/pr-size-labeler@v1
18
+ - uses : CodelyTV/pr-size-labeler@54ef36785e9f4cb5ecf1949cfc9b00dbb621d761 # v1.8.1
19
19
with :
20
20
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
21
21
xs_label : ' size/XS'
Original file line number Diff line number Diff line change @@ -14,26 +14,26 @@ jobs:
14
14
outputs :
15
15
version : ${{ steps.go-version.outputs.version }}
16
16
steps :
17
- - uses : actions/checkout@v3
17
+ - uses : actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
18
18
- id : go-version
19
19
run : echo "::set-output name=version::$(cat ./.go-version)"
20
20
release-notes :
21
21
runs-on : ubuntu-latest
22
22
steps :
23
- - uses : actions/checkout@v3
23
+ - uses : actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
24
24
with :
25
25
fetch-depth : 0
26
26
- name : Generate Release Notes
27
27
run : sed -n -e "1{/# /d;}" -e "2{/^$/d;}" -e "/# $(git describe --abbrev=0 --exclude="$(git describe --abbrev=0 --match='v*.*.*' --tags)" --match='v*.*.*' --tags | tr -d v)/q;p" CHANGELOG.md > release-notes.txt
28
- - uses : actions/upload-artifact@v3
28
+ - uses : actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
29
29
with :
30
30
name : release-notes
31
31
path : release-notes.txt
32
32
retention-days : 1
33
33
terraform-provider-release :
34
34
name : ' Terraform Provider Release'
35
35
needs : [go-version, release-notes]
36
- uses : hashicorp/ghaction-terraform-provider-release/.github/workflows/hashicorp.yml@v2
36
+ uses : hashicorp/ghaction-terraform-provider-release/.github/workflows/hashicorp.yml@106e6d08159ccec423310cc2c706bae59f46c09c # v2.2.0
37
37
secrets :
38
38
hc-releases-key-prod : ' ${{ secrets.HC_RELEASES_KEY_PROD }}'
39
39
hc-releases-key-staging : ' ${{ secrets.HC_RELEASES_KEY_STAGING }}'
Original file line number Diff line number Diff line change @@ -22,16 +22,16 @@ jobs:
22
22
steps :
23
23
24
24
- name : Set up Go
25
- uses : actions/setup-go@v3
25
+ uses : actions/setup-go@6edd4406fa81c3da01a34fa6f6343087c207a568 # v3.5.0
26
26
with :
27
27
go-version : ' 1.18'
28
28
id : go
29
29
30
30
- name : Check out code into the Go module directory
31
- uses : actions/checkout@v3
31
+ uses : actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
32
32
33
33
- name : Run linters
34
- uses : golangci/golangci-lint-action@v3
34
+ uses : golangci/golangci-lint-action@0ad9a0988b3973e851ab0a07adf248ec2e100376 # v3.3.1
35
35
with :
36
36
version : latest
37
37
@@ -76,10 +76,10 @@ jobs:
76
76
check-latest : true
77
77
78
78
- name : Check out code
79
- uses : actions/checkout@v3
79
+ uses : actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
80
80
81
81
- name : Setup Terraform ${{ matrix.terraform }}
82
- uses : hashicorp/setup-terraform@v2
82
+ uses : hashicorp/setup-terraform@633666f66e0061ca3b725c73b2ec20cd13a8fdd1 # v2.0.3
83
83
with :
84
84
terraform_version : ${{ matrix.terraform }}
85
85
terraform_wrapper : false
You can’t perform that action at this time.
0 commit comments