Skip to content

Commit 4e4e1e3

Browse files
authored
Merge branch 'main' into james/oss-3297-cleanup-archived-deps
2 parents 6732722 + f31c37a commit 4e4e1e3

3 files changed

Lines changed: 30 additions & 192 deletions

File tree

.circleci/config.yml

Lines changed: 0 additions & 191 deletions
This file was deleted.

.github/workflows/pre-commit.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Pre-commit
2+
3+
on:
4+
push:
5+
6+
permissions:
7+
contents: read
8+
9+
jobs:
10+
pre-commit:
11+
name: Pre-commit
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
16+
17+
- name: Set up mise
18+
uses: jdx/mise-action@5228313ee0372e111a38da051671ca30fc5a96db # v3
19+
env:
20+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21+
22+
- name: Install pre-commit
23+
run: pip3 install pre-commit
24+
25+
- name: Install goimports
26+
run: go install golang.org/x/tools/cmd/goimports@latest
27+
28+
- name: Run pre-commit
29+
run: pre-commit run --all-files

mise.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ go = "1.26.1"
33
golangci-lint = "2.11.3"
44
terraform = "1.5.7"
55
opentofu = "1.8.0"
6-
terragrunt = "0.93.10"
6+
terragrunt = "1.0.2"
77
packer = "1.10.0"
88
helm = "3.13.1"
99
opa = "1.1.0"

0 commit comments

Comments
 (0)