Skip to content

Commit 0ce27d6

Browse files
committed
Merge branch 'main' into use-hc-install
2 parents 1753090 + d0d376a commit 0ce27d6

14 files changed

+44
-39
lines changed

.github/workflows/atlantis-image.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
if: github.event.pull_request.draft == false
3030
runs-on: ubuntu-22.04
3131
steps:
32-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
32+
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
3333
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3
3434
id: changes
3535
with:
@@ -56,7 +56,7 @@ jobs:
5656
PUSH: ${{ github.event_name != 'pull_request' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/')) }}
5757

5858
steps:
59-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
59+
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
6060

6161
# Lint the Dockerfile first before setting anything up
6262
- name: Lint Dockerfile
@@ -160,7 +160,7 @@ jobs:
160160
DOCKER_REPO: ghcr.io/${{ github.repository }}
161161

162162
steps:
163-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
163+
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
164164

165165
- name: Set up Docker Buildx
166166
uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3
@@ -195,7 +195,7 @@ jobs:
195195
skip-build:
196196
needs: [changes]
197197
if: needs.changes.outputs.should-run-build == 'false'
198-
name: Skip Building Image
198+
name: Build Image
199199
strategy:
200200
matrix:
201201
image_type: [alpine, debian]

.github/workflows/codeql.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
if: github.event.pull_request.draft == false
3838
runs-on: ubuntu-22.04
3939
steps:
40-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
40+
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
4141
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3
4242
id: changes
4343
with:
@@ -67,11 +67,11 @@ jobs:
6767

6868
steps:
6969
- name: Checkout repository
70-
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
70+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
7171

7272
# Initializes the CodeQL tools for scanning.
7373
- name: Initialize CodeQL
74-
uses: github/codeql-action/init@2e230e8fe0ad3a14a340ad0815ddb96d599d2aff # v3
74+
uses: github/codeql-action/init@23acc5c183826b7a8a97bce3cecc52db901f8251 # v3
7575
with:
7676
languages: ${{ matrix.language }}
7777
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -85,7 +85,7 @@ jobs:
8585
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
8686
# If this step fails, then you should remove it and run the build manually (see below)
8787
- name: Autobuild
88-
uses: github/codeql-action/autobuild@2e230e8fe0ad3a14a340ad0815ddb96d599d2aff # v3
88+
uses: github/codeql-action/autobuild@23acc5c183826b7a8a97bce3cecc52db901f8251 # v3
8989

9090
# ℹ️ Command-line programs to run using the OS shell.
9191
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -98,17 +98,17 @@ jobs:
9898
# ./location_of_script_within_repo/buildscript.sh
9999

100100
- name: Perform CodeQL Analysis
101-
uses: github/codeql-action/analyze@2e230e8fe0ad3a14a340ad0815ddb96d599d2aff # v3
101+
uses: github/codeql-action/analyze@23acc5c183826b7a8a97bce3cecc52db901f8251 # v3
102102
with:
103103
category: "/language:${{matrix.language}}"
104104

105105
skip-analyze:
106106
needs: [changes]
107107
if: needs.changes.outputs.should-run-analyze == 'false'
108-
name: Skip Analyze
108+
name: Analyze
109109
strategy:
110110
matrix:
111111
language: [ 'go', 'javascript' ]
112112
runs-on: ubuntu-22.04
113113
steps:
114-
- run: 'echo "No build required"'
114+
- run: 'echo "No build required"'

.github/workflows/lint.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: lint
1+
name: linter
22

33
on:
44
pull_request:
@@ -22,7 +22,7 @@ jobs:
2222
if: github.event.pull_request.draft == false
2323
runs-on: ubuntu-22.04
2424
steps:
25-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
25+
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
2626
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3
2727
id: changes
2828
with:
@@ -39,7 +39,7 @@ jobs:
3939
name: Linting
4040
runs-on: ubuntu-22.04
4141
steps:
42-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
42+
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
4343

4444
# need to setup go toolchain explicitly
4545
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5
@@ -54,7 +54,7 @@ jobs:
5454
skip-lint:
5555
needs: [changes]
5656
if: needs.changes.outputs.should-run-linting == 'false'
57-
name: Skip Linting
57+
name: Linting
5858
runs-on: ubuntu-22.04
5959
steps:
6060
- run: 'echo "No build required"'

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
goreleaser:
1111
runs-on: ubuntu-22.04
1212
steps:
13-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
13+
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
1414
with:
1515
submodules: true
1616

.github/workflows/renovate-config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ jobs:
1616
validate:
1717
runs-on: ubuntu-22.04
1818
steps:
19-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
19+
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
2020
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4
2121
- run: npx --package renovate -c 'renovate-config-validator'

.github/workflows/test.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: test
1+
name: tester
22

33
on:
44
push:
@@ -26,7 +26,7 @@ jobs:
2626
if: github.event.pull_request.draft == false
2727
runs-on: ubuntu-22.04
2828
steps:
29-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
29+
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
3030
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3
3131
id: changes
3232
with:
@@ -41,9 +41,9 @@ jobs:
4141
if: needs.changes.outputs.should-run-tests == 'true'
4242
name: Tests
4343
runs-on: ubuntu-22.04
44-
container: ghcr.io/runatlantis/testing-env:latest@sha256:74fb8d02c8a4dc3a1e330b8347ea9bd18039af4a4103fbd813c9ec65e40b480c
44+
container: ghcr.io/runatlantis/testing-env:latest@sha256:447d61ab6c6440202cecd8bb299a2147dcad166387d544c327876be437575b6b
4545
steps:
46-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
46+
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
4747

4848
# need to setup go toolchain explicitly
4949
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5
@@ -96,7 +96,7 @@ jobs:
9696
skip-test:
9797
needs: [changes]
9898
if: needs.changes.outputs.should-run-tests == 'false'
99-
name: Skip Tests
99+
name: Tests
100100
runs-on: ubuntu-22.04
101101
steps:
102102
- run: 'echo "No build required"'
@@ -111,7 +111,7 @@ jobs:
111111
ATLANTISBOT_GITHUB_TOKEN: ${{ secrets.ATLANTISBOT_GITHUB_TOKEN }}
112112
NGROK_AUTH_TOKEN: ${{ secrets.ATLANTISBOT_NGROK_AUTH_TOKEN }}
113113
steps:
114-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
114+
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
115115
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5
116116
with:
117117
go-version-file: go.mod

.github/workflows/testing-env-image.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
if: github.event.pull_request.draft == false
2323
runs-on: ubuntu-22.04
2424
steps:
25-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
25+
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
2626
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3
2727
id: changes
2828
with:
@@ -37,7 +37,7 @@ jobs:
3737
name: Build Testing Env Image
3838
runs-on: ubuntu-22.04
3939
steps:
40-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
40+
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
4141

4242
- name: Set up QEMU
4343
uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v3
@@ -71,7 +71,7 @@ jobs:
7171
skip-build:
7272
needs: [changes]
7373
if: needs.changes.outputs.should-run-build == 'false'
74-
name: Skip Build Testing Env Image
74+
name: Build Testing Env Image
7575
runs-on: ubuntu-22.04
7676
steps:
77-
- run: 'echo "No build required"'
77+
- run: 'echo "No build required"'

.github/workflows/website.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: website-lint-check
1+
name: website
22

33
on:
44
push:
@@ -26,7 +26,7 @@ jobs:
2626
if: github.event.pull_request.draft == false
2727
runs-on: ubuntu-22.04
2828
steps:
29-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
29+
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
3030
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3
3131
id: changes
3232
with:
@@ -46,7 +46,7 @@ jobs:
4646
name: Website Link Check
4747
runs-on: ubuntu-latest
4848
steps:
49-
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
49+
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
5050

5151
- name: markdown-lint
5252
uses: DavidAnson/markdownlint-cli2-action@b4c9feab76d8025d1e83c653fa3990936df0e6c8 # v16
@@ -100,7 +100,7 @@ jobs:
100100
skip-link-check:
101101
needs: [changes]
102102
if: needs.changes.outputs.should-run-link-check == 'false'
103-
name: Skip Website Link Check
103+
name: Website Link Check
104104
runs-on: ubuntu-latest
105105
steps:
106106
- run: 'echo "No build required"'

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# syntax=docker/dockerfile:1@sha256:a57df69d0ea827fb7266491f2813635de6f17269be881f696fbfdf2d83dda33e
22
# what distro is the image being built for
33
ARG ALPINE_TAG=3.20.0@sha256:77726ef6b57ddf65bb551896826ec38bc3e53f75cdde31354fbffb4f25238ebd
4-
ARG DEBIAN_TAG=12.5-slim@sha256:804194b909ef23fb995d9412c9378fb3505fe2427b70f3cc425339e48a828fca
5-
ARG GOLANG_TAG=1.22.4-alpine@sha256:9bdd5692d39acc3f8d0ea6f81327f87ac6b473dd29a2b6006df362bff48dd1f8
4+
ARG DEBIAN_TAG=12.5-slim@sha256:67f3931ad8cb1967beec602d8c0506af1e37e8d73c2a0b38b181ec5d8560d395
5+
ARG GOLANG_TAG=1.22.4-alpine@sha256:6522f0ca555a7b14c46a2c9f50b86604a234cdc72452bf6a268cae6461d9000b
66

77
# renovate: datasource=github-releases depName=hashicorp/terraform versioning=hashicorp
88
ARG DEFAULT_TERRAFORM_VERSION=1.8.5

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
# Atlantis <!-- omit in toc -->
22

33
[![Latest Release](https://img.shields.io/github/release/runatlantis/atlantis.svg)](https://github.com/runatlantis/atlantis/releases/latest)
4-
[![SuperDopeBadge](./runatlantis.io/.vitepress/public/hightower-super-dope.svg)](https://twitter.com/kelseyhightower/status/893260922222813184)
4+
[![SuperDopeBadge](./runatlantis.io/public/hightower-super-dope.svg)](https://twitter.com/kelseyhightower/status/893260922222813184)
55
[![Go Report Card](https://goreportcard.com/badge/github.com/runatlantis/atlantis)](https://goreportcard.com/report/github.com/runatlantis/atlantis)
66
[![Go Reference](https://pkg.go.dev/badge/github.com/runatlantis/atlantis.svg)](https://pkg.go.dev/github.com/runatlantis/atlantis)
7-
[![codecov](https://codecov.io/gh/runatlantis/atlantis/branch/main/graph/badge.svg)](https://codecov.io/gh/runatlantis/atlantis)
87
[![CircleCI](https://circleci.com/gh/runatlantis/atlantis/tree/main.svg?style=shield)](https://circleci.com/gh/runatlantis/atlantis/tree/main)
98
[![Slack](https://img.shields.io/badge/Join-Atlantis%20Community%20Slack-red)](https://join.slack.com/t/atlantis-community/shared_invite/zt-9xlxtxtc-CUSKB1ATt_sQy6um~LDPNw)
109

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ require (
2323
github.com/hashicorp/go-version v1.7.0
2424
github.com/hashicorp/golang-lru/v2 v2.0.7
2525
github.com/hashicorp/hc-install v0.7.1-0.20240529171616-e08210622997
26-
github.com/hashicorp/terraform-config-inspect v0.0.0-20240509232506-4708120f8f30
26+
github.com/hashicorp/terraform-config-inspect v0.0.0-20240607080351-271db412dbcb
2727
github.com/jpillora/backoff v1.0.0
2828
github.com/kr/pretty v0.3.1
2929
github.com/mcdafydd/go-azuredevops v0.12.1

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -268,8 +268,8 @@ github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4=
268268
github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ=
269269
github.com/hashicorp/hcl/v2 v2.20.1 h1:M6hgdyz7HYt1UN9e61j+qKJBqR3orTWbI1HKBJEdxtc=
270270
github.com/hashicorp/hcl/v2 v2.20.1/go.mod h1:TZDqQ4kNKCbh1iJp99FdPiUaVDDUPivbqxZulxDYqL4=
271-
github.com/hashicorp/terraform-config-inspect v0.0.0-20240509232506-4708120f8f30 h1:0qwr2oZy9mIIJMWh7W9NTHLWGMbEF5KEQ+QqM9hym34=
272-
github.com/hashicorp/terraform-config-inspect v0.0.0-20240509232506-4708120f8f30/go.mod h1:Gz/z9Hbn+4KSp8A2FBtNszfLSdT2Tn/uAKGuVqqWmDI=
271+
github.com/hashicorp/terraform-config-inspect v0.0.0-20240607080351-271db412dbcb h1:6gCfY5aQdQgRr0G5VDjnV5ENpd+hTamWaZfVz+lJ724=
272+
github.com/hashicorp/terraform-config-inspect v0.0.0-20240607080351-271db412dbcb/go.mod h1:Gz/z9Hbn+4KSp8A2FBtNszfLSdT2Tn/uAKGuVqqWmDI=
273273
github.com/huandu/xstrings v1.3.3/go.mod h1:y5/lhBue+AyNmUVz9RLU9xbLR0o4KIIExikq4ovT0aE=
274274
github.com/huandu/xstrings v1.4.0 h1:D17IlohoQq4UcpqD7fDk80P7l+lwAmlFaBHgOipl2FU=
275275
github.com/huandu/xstrings v1.4.0/go.mod h1:y5/lhBue+AyNmUVz9RLU9xbLR0o4KIIExikq4ovT0aE=

server/events/plan_command_runner.go

+6
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,12 @@ func (p *PlanCommandRunner) runAutoplan(ctx *command.Context) {
119119
ctx.Log.Warn("unable to update plan commit status: %s", err)
120120
}
121121

122+
if baseRepo.VCSHost.Type == models.Gitlab {
123+
if err := p.commitStatusUpdater.UpdateCombinedCount(ctx.Log, ctx.Pull.BaseRepo, ctx.Pull, models.PendingCommitStatus, command.Apply, 0, len(projectCmds)); err != nil {
124+
ctx.Log.Warn("unable to update apply commit status: %s", err)
125+
}
126+
}
127+
122128
// discard previous plans that might not be relevant anymore
123129
ctx.Log.Debug("deleting previous plans and locks")
124130
p.deletePlans(ctx)

testing/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.22.4@sha256:969349b8121a56d51c74f4c273ab974c15b3a8ae246a5cffc1df7d28b66cf978
1+
FROM golang:1.22.4@sha256:4950c1cce16bb754e23ee70d25a67e906149d0faedc0aaeed49c075b696fa889
22

33
RUN apt-get update && apt-get --no-install-recommends -y install unzip \
44
&& apt-get clean \

0 commit comments

Comments
 (0)