Skip to content

Commit 766691b

Browse files
authored
Merge pull request #1123 from hashicorp/brandonc/lint_ci_fix
Fix lint job in CI workflow
2 parents 87d9abe + ec70822 commit 766691b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/actions/lint-go-tfe/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ runs:
77
using: composite
88
steps:
99
- name: Set up Go
10-
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
10+
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
1111
with:
1212
go-version-file: go.mod
1313
cache: true

.github/actions/test-go-tfe/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ runs:
4848
using: composite
4949
steps:
5050
- name: Set up Go
51-
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
51+
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
5252
with:
5353
go-version-file: go.mod
5454
cache: true

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
lint:
1212
name: Lint
1313
runs-on: ubuntu-latest
14-
timeout-minutes: 5
14+
timeout-minutes: 10
1515
steps:
1616
- name: Checkout code
1717
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
@@ -68,7 +68,7 @@ jobs:
6868
node-version: 20
6969

7070
- name: Set up Go
71-
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
71+
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
7272
with:
7373
go-version: '^1.22'
7474
cache: true

0 commit comments

Comments
 (0)