From 4d425bfa0449e2d43e642ecf098ad5aa8893e4ce Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 22 May 2024 22:12:52 +0000 Subject: [PATCH 01/19] chore(deps): update jidicula/clang-format-action action to v4.13.0 --- .github/workflows/lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index a50727f..c8c54ad 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -23,7 +23,7 @@ jobs: uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 - name: clang-format Check - uses: jidicula/clang-format-action@f62da5e3d3a2d88ff364771d9d938773a618ab5e # v4.11.0 + uses: jidicula/clang-format-action@c74383674bf5f7c69f60ce562019c1c94bc1421a # v4.13.0 with: clang-format-version: 17 check-path: src From 86a889e49e137ef7319a88eb52e91f64f879a4d6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 23 May 2024 15:01:12 +0000 Subject: [PATCH 02/19] chore(deps): update cgr.dev/chainguard/glibc-dynamic:latest docker digest to 31073f3 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3019197..3820c1b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,6 +16,6 @@ RUN \ cmake --build build && \ strip --strip-unneeded build/src/tfhttp -FROM cgr.dev/chainguard/glibc-dynamic:latest@sha256:6dff3d81e2edaa0ef48ea87b808c34c4b24959169d9ad317333bdda4ec3c4002 +FROM cgr.dev/chainguard/glibc-dynamic:latest@sha256:31073f3a1add4bfc3ce4ee474ee171bf9dcc9799a468a39c8180c45ddf11c883 COPY --from=build /app/build/src/tfhttp /tfhttp ENTRYPOINT ["/tfhttp"] From 703bb7c1bde994e25789d37b9d6ef42c039a5b14 Mon Sep 17 00:00:00 2001 From: Volodymyr Kolesnykov Date: Sun, 26 May 2024 03:46:37 +0300 Subject: [PATCH 03/19] build: use clang 18 --- .github/actions/install-dependencies/action.yml | 4 ++-- .github/workflows/codeql.yml | 4 ++-- .github/workflows/lint.yml | 2 +- .github/workflows/sonarcloud.yml | 4 ++-- .github/workflows/static-analysis.yml | 12 ++++++------ Dockerfile.alpine | 4 ++-- 6 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/actions/install-dependencies/action.yml b/.github/actions/install-dependencies/action.yml index 07b2e34..6fff52b 100644 --- a/.github/actions/install-dependencies/action.yml +++ b/.github/actions/install-dependencies/action.yml @@ -15,8 +15,8 @@ runs: run: | wget https://apt.llvm.org/llvm.sh chmod +x ./llvm.sh - sudo ./llvm.sh 17 - sudo apt-get install -y clang-tools-17 + sudo ./llvm.sh 18 + sudo apt-get install -y clang-tools-18 - name: Install sarif-multitool shell: bash diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 1922f98..a396866 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -25,8 +25,8 @@ jobs: language: - c-cpp env: - CC: clang-17 - CXX: clang++-17 + CC: clang-18 + CXX: clang++-18 steps: - name: Check out code uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index c8c54ad..22f5647 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -25,5 +25,5 @@ jobs: - name: clang-format Check uses: jidicula/clang-format-action@c74383674bf5f7c69f60ce562019c1c94bc1421a # v4.13.0 with: - clang-format-version: 17 + clang-format-version: 18 check-path: src diff --git a/.github/workflows/sonarcloud.yml b/.github/workflows/sonarcloud.yml index cad52c7..2313f76 100644 --- a/.github/workflows/sonarcloud.yml +++ b/.github/workflows/sonarcloud.yml @@ -14,8 +14,8 @@ jobs: runs-on: ubuntu-latest env: BUILD_WRAPPER_OUT_DIR: build_wrapper_output_directory - CC: clang-17 - CXX: clang++-17 + CC: clang-18 + CXX: clang++-18 steps: - name: Check out code uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index 54c84fa..171eef3 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -20,10 +20,10 @@ jobs: contents: read security-events: write env: - CC: clang-17 - CXX: clang++-17 - CCC_CC: clang-17 - CCC_CXX: clang++-17 + CC: clang-18 + CXX: clang++-18 + CCC_CC: clang-18 + CCC_CXX: clang++-18 DOTNET_SYSTEM_GLOBALIZATION_INVARIANT: 1 SCANBUILD_DIR: /tmp/scanbuild steps: @@ -35,8 +35,8 @@ jobs: - name: Run analysis run: | - scan-build-17 cmake -B build - scan-build-17 --force-analyze-debug-code -sarif --status-bugs -no-failure-reports -o "${SCANBUILD_DIR}" --exclude build cmake --build build + scan-build-18 cmake -B build + scan-build-18 --force-analyze-debug-code -sarif --status-bugs -no-failure-reports -o "${SCANBUILD_DIR}" --exclude build cmake --build build continue-on-error: true id: scanbuild diff --git a/Dockerfile.alpine b/Dockerfile.alpine index 66b2f4c..744be1f 100644 --- a/Dockerfile.alpine +++ b/Dockerfile.alpine @@ -1,12 +1,12 @@ FROM alpine:3.20.0@sha256:77726ef6b57ddf65bb551896826ec38bc3e53f75cdde31354fbffb4f25238ebd AS build -RUN apk add --no-cache cmake make libc-dev clang17 git file libev-dev ada-static ada-dev sqlite-dev sqlite-static sqlite3pp nlohmann-json libressl-dev +RUN apk add --no-cache cmake make libc-dev clang18 git file libev-dev ada-static ada-dev sqlite-dev sqlite-static sqlite3pp nlohmann-json libressl-dev WORKDIR / COPY . /app WORKDIR /app RUN \ - cmake -B build -DCMAKE_BUILD_TYPE=Release -DBUILD_STATIC_BINARY=on && \ + cmake -B build -DCMAKE_BUILD_TYPE=Release -DBUILD_STATIC_BINARY=on -DCMAKE_CXX_COMPILER=clang++-18 -DCMAKE_C_COMPILER=clang-18 && \ cmake --build build && \ strip --strip-unneeded build/src/tfhttp From b436e1b86e0f6ec2c454d81c246b2a99689e3ff4 Mon Sep 17 00:00:00 2001 From: Volodymyr Kolesnykov Date: Sun, 26 May 2024 04:07:29 +0300 Subject: [PATCH 04/19] ci: use `sarif-tools` instead of `sarif-multitool` --- .github/actions/install-dependencies/action.yml | 4 ---- .github/workflows/static-analysis.yml | 7 +++++-- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/actions/install-dependencies/action.yml b/.github/actions/install-dependencies/action.yml index 6fff52b..42993c9 100644 --- a/.github/actions/install-dependencies/action.yml +++ b/.github/actions/install-dependencies/action.yml @@ -18,10 +18,6 @@ runs: sudo ./llvm.sh 18 sudo apt-get install -y clang-tools-18 - - name: Install sarif-multitool - shell: bash - run: npm i -g @microsoft/sarif-multitool - - name: Set up ccache uses: hendrikmuhs/ccache-action@c92f40bee50034e84c763e33b317c77adaa81c92 # v1.2.13 diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index 171eef3..33c0c4c 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -40,8 +40,11 @@ jobs: continue-on-error: true id: scanbuild - - name: Merge SARIF reports - run: sarif-multitool merge "${{ env.SCANBUILD_DIR }}/" --recurse --output-directory=/tmp --output-file=scan-build.sarif + - name: Merge reports + run: | + pip install sarif-tools + sarif copy --output /tmp/merged.sarif "${SCANBUILD_DIR}/**/*.sarif" + jq 'del(.runs[].conversion)' /tmp/merged.sarif > /tmp/scan-build.sarif - name: Upload scan results uses: github/codeql-action/upload-sarif@9fdb3e49720b44c48891d036bb502feb25684276 # v3.25.6 From a0e00a711aead84d0d07b74d11c5c318a3f2c25e Mon Sep 17 00:00:00 2001 From: Volodymyr Kolesnykov Date: Sun, 26 May 2024 05:45:08 +0300 Subject: [PATCH 05/19] fix: set exit code properly --- .devcontainer/Dockerfile | 4 +--- .devcontainer/devcontainer.json | 12 +++++++----- .github/workflows/static-analysis.yml | 8 +++++++- 3 files changed, 15 insertions(+), 9 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index d032aa4..3bb3e24 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -7,7 +7,7 @@ ENV LANGUAGE=en_US RUN \ export DEBIAN_FRONTEND=noninteractive && \ apt-get update && \ - apt-get install -y --no-install-recommends bash sudo ca-certificates wget file cmake git make pkgconf valgrind autoconf automake libtool m4 ninja-build && \ + apt-get install -y --no-install-recommends bash sudo ca-certificates wget file cmake git make pkgconf valgrind autoconf automake libtool m4 ninja-build jq less && \ rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/* RUN \ @@ -32,8 +32,6 @@ RUN \ echo "ubuntu ALL=(root) NOPASSWD:ALL" > "/etc/sudoers.d/ubuntu" && \ chmod 0440 "/etc/sudoers.d/ubuntu" -RUN sudo npm i -g @microsoft/sarif-multitool - WORKDIR /usr/src RUN \ diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index e011af1..c73266b 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -7,14 +7,16 @@ "customizations": { "vscode": { "extensions": [ + "akiramiyakoda.cppincludeguard", + "github.copilot", + "GitHub.copilot-chat", + "github.vscode-github-actions", + "ms-azuretools.vscode-docker", "ms-vscode.cmake-tools", "ms-vscode.cpptools", - "github.copilot", - "akiramiyakoda.cppincludeguard", - "SonarSource.sonarlint-vscode", "ms-vscode.cpptools-extension-pack", - "xaver.clang-format", - "GitHub.copilot-chat" + "SonarSource.sonarlint-vscode", + "xaver.clang-format" ], "settings": { "sonarlint.ls.javaHome": "/usr/lib/jvm/java-21-openjdk-amd64", diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index 33c0c4c..40ce611 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -45,6 +45,12 @@ jobs: pip install sarif-tools sarif copy --output /tmp/merged.sarif "${SCANBUILD_DIR}/**/*.sarif" jq 'del(.runs[].conversion)' /tmp/merged.sarif > /tmp/scan-build.sarif + if [ $(jq '[.runs[].results | length] | add' /tmp/scan-build.sarif) -gt 0 ]; then + exit 1 + fi + exit 0 + id: merge + continue-on-error: true - name: Upload scan results uses: github/codeql-action/upload-sarif@9fdb3e49720b44c48891d036bb502feb25684276 # v3.25.6 @@ -55,4 +61,4 @@ jobs: - name: Set exit code run: exit 1 - if: steps.scanbuild.outcome == 'failure' + if: steps.scanbuild.outcome == 'failure' || steps.merge.outcome == 'failure' From 795cdaa0cda87512a1e13899f1e2cb2eb34ce7b6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 28 May 2024 08:51:33 +0000 Subject: [PATCH 06/19] chore(deps): update docker/login-action action to v3.2.0 --- .github/workflows/docker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 971c668..b81999e 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -34,7 +34,7 @@ jobs: uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 - name: Login to GHCR - uses: docker/login-action@e92390c5fb421da1463c202d546fed0ec5c39f20 # v3.1.0 + uses: docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446 # v3.2.0 with: registry: https://ghcr.io username: ${{ github.actor }} From e6dde2fb61528ac0245c33745e2b7dd86f2214cb Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 31 May 2024 11:10:30 +0000 Subject: [PATCH 07/19] chore(deps): update github/codeql-action action to v3.25.7 --- .github/workflows/codeql.yml | 4 ++-- .github/workflows/static-analysis.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index a396866..b6d478b 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -32,7 +32,7 @@ jobs: uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 - name: Initialize CodeQL - uses: github/codeql-action/init@9fdb3e49720b44c48891d036bb502feb25684276 # v3.25.6 + uses: github/codeql-action/init@f079b8493333aace61c81488f8bd40919487bd9f # v3.25.7 with: languages: ${{ matrix.language }} @@ -45,6 +45,6 @@ jobs: cmake --build build - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@9fdb3e49720b44c48891d036bb502feb25684276 # v3.25.6 + uses: github/codeql-action/analyze@f079b8493333aace61c81488f8bd40919487bd9f # v3.25.7 with: category: "/language:${{ matrix.language }}" diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index 40ce611..e0056c8 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -53,7 +53,7 @@ jobs: continue-on-error: true - name: Upload scan results - uses: github/codeql-action/upload-sarif@9fdb3e49720b44c48891d036bb502feb25684276 # v3.25.6 + uses: github/codeql-action/upload-sarif@f079b8493333aace61c81488f8bd40919487bd9f # v3.25.7 with: sarif_file: /tmp/scan-build.sarif category: scanbuild From dfbb5b5825059d2831d4f5a1d8cc374eab670c20 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 4 Jun 2024 15:27:48 +0000 Subject: [PATCH 08/19] chore(deps): update github/codeql-action action to v3.25.8 --- .github/workflows/codeql.yml | 4 ++-- .github/workflows/static-analysis.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index b6d478b..e216eff 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -32,7 +32,7 @@ jobs: uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 - name: Initialize CodeQL - uses: github/codeql-action/init@f079b8493333aace61c81488f8bd40919487bd9f # v3.25.7 + uses: github/codeql-action/init@2e230e8fe0ad3a14a340ad0815ddb96d599d2aff # v3.25.8 with: languages: ${{ matrix.language }} @@ -45,6 +45,6 @@ jobs: cmake --build build - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@f079b8493333aace61c81488f8bd40919487bd9f # v3.25.7 + uses: github/codeql-action/analyze@2e230e8fe0ad3a14a340ad0815ddb96d599d2aff # v3.25.8 with: category: "/language:${{ matrix.language }}" diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index e0056c8..d4c63b1 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -53,7 +53,7 @@ jobs: continue-on-error: true - name: Upload scan results - uses: github/codeql-action/upload-sarif@f079b8493333aace61c81488f8bd40919487bd9f # v3.25.7 + uses: github/codeql-action/upload-sarif@2e230e8fe0ad3a14a340ad0815ddb96d599d2aff # v3.25.8 with: sarif_file: /tmp/scan-build.sarif category: scanbuild From 61c397c98241a98ee07f15f7b5aa0e230d4cbe41 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 5 Jun 2024 05:07:44 +0000 Subject: [PATCH 09/19] chore(deps): update ubuntu:24.04 docker digest to e3f92ab --- .devcontainer/Dockerfile | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 3bb3e24..be1e6a1 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:24.04@sha256:3f85b7caad41a95462cf5b787d8a04604c8262cdcdf9a472b8c52ef83375fe15 AS build +FROM ubuntu:24.04@sha256:e3f92abc0967a6c19d0dfa2d55838833e947b9d74edbcb0113e48535ad4be12a AS build ENV LC_ALL=C.UTF-8 ENV LANG=C.UTF-8 diff --git a/Dockerfile b/Dockerfile index 3820c1b..102f80c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:24.04@sha256:3f85b7caad41a95462cf5b787d8a04604c8262cdcdf9a472b8c52ef83375fe15 AS build +FROM ubuntu:24.04@sha256:e3f92abc0967a6c19d0dfa2d55838833e947b9d74edbcb0113e48535ad4be12a AS build ENV DEBIAN_FRONTEND=noninteractive From 0f82a08c0438612742cbcac160a22624227add62 Mon Sep 17 00:00:00 2001 From: Volodymyr Kolesnykov Date: Sat, 8 Jun 2024 14:39:12 +0300 Subject: [PATCH 10/19] Add workflow --- .github/workflows/test.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..cb27fab --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,19 @@ +name: Interesting Test + +on: + pull_request: + branches: + - master_clone + +permissions: + contents: read + +jobs: + test: + name: Run tests + runs-on: ubuntu-latest + permissions: + contents: read + steps: + - name: Run test + run: exit 0 From 21808b329e42b5bf4993be32212078542f49eca4 Mon Sep 17 00:00:00 2001 From: Volodymyr Kolesnykov Date: Fri, 7 Jun 2024 18:14:33 +0300 Subject: [PATCH 11/19] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 8d5f717..ffef2f4 100644 --- a/README.md +++ b/README.md @@ -58,3 +58,4 @@ terraform { ``` ([More details](https://developer.hashicorp.com/terraform/language/settings/backends/http#configuration-variables)). + From a529d2155f5be76359e977385846b377e38a53cd Mon Sep 17 00:00:00 2001 From: Volodymyr Kolesnykov Date: Sat, 8 Jun 2024 13:29:44 +0300 Subject: [PATCH 12/19] Update README --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index ffef2f4..3c4cab9 100644 --- a/README.md +++ b/README.md @@ -59,3 +59,4 @@ terraform { ([More details](https://developer.hashicorp.com/terraform/language/settings/backends/http#configuration-variables)). + From 081cf17ab11888517c16749c0a3b305dfb5cedae Mon Sep 17 00:00:00 2001 From: Volodymyr Kolesnykov Date: Sat, 8 Jun 2024 14:29:57 +0300 Subject: [PATCH 13/19] Update README --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 3c4cab9..711dcbe 100644 --- a/README.md +++ b/README.md @@ -60,3 +60,4 @@ terraform { ([More details](https://developer.hashicorp.com/terraform/language/settings/backends/http#configuration-variables)). + From f70d3b2326d0d718c09bd8b6601b689b09b2d96a Mon Sep 17 00:00:00 2001 From: Volodymyr Kolesnykov Date: Sat, 8 Jun 2024 15:00:56 +0300 Subject: [PATCH 14/19] Update README --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 711dcbe..509b8b5 100644 --- a/README.md +++ b/README.md @@ -59,5 +59,4 @@ terraform { ([More details](https://developer.hashicorp.com/terraform/language/settings/backends/http#configuration-variables)). - - +------ From 60be526d4312c575bcf7f407a5b75262c4184764 Mon Sep 17 00:00:00 2001 From: Volodymyr Kolesnykov Date: Sat, 8 Jun 2024 15:04:24 +0300 Subject: [PATCH 15/19] Update README --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 509b8b5..23ef554 100644 --- a/README.md +++ b/README.md @@ -60,3 +60,4 @@ terraform { ([More details](https://developer.hashicorp.com/terraform/language/settings/backends/http#configuration-variables)). ------ + From a71fd1831d58d23b820cd115e800a5696da9b7d2 Mon Sep 17 00:00:00 2001 From: Volodymyr Kolesnykov Date: Sat, 8 Jun 2024 16:40:47 +0300 Subject: [PATCH 16/19] Update README --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 23ef554..20d33ec 100644 --- a/README.md +++ b/README.md @@ -61,3 +61,4 @@ terraform { ------ + From b2cf3b5aece0d0acae5eb0e354531b0835cc46ea Mon Sep 17 00:00:00 2001 From: Volodymyr Kolesnykov Date: Sat, 8 Jun 2024 18:42:37 +0300 Subject: [PATCH 17/19] Update README --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 20d33ec..509b8b5 100644 --- a/README.md +++ b/README.md @@ -60,5 +60,3 @@ terraform { ([More details](https://developer.hashicorp.com/terraform/language/settings/backends/http#configuration-variables)). ------ - - From e4e9ee8cc84d987d5bc77858facb33dea911f927 Mon Sep 17 00:00:00 2001 From: Volodymyr Kolesnykov Date: Sat, 8 Jun 2024 18:52:49 +0300 Subject: [PATCH 18/19] Update README --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 509b8b5..23ef554 100644 --- a/README.md +++ b/README.md @@ -60,3 +60,4 @@ terraform { ([More details](https://developer.hashicorp.com/terraform/language/settings/backends/http#configuration-variables)). ------ + From 7192e5a816512c157c4e69c7481d9331cb3bde11 Mon Sep 17 00:00:00 2001 From: Volodymyr Kolesnykov Date: Mon, 10 Jun 2024 03:29:10 +0300 Subject: [PATCH 19/19] Update README --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 23ef554..20d33ec 100644 --- a/README.md +++ b/README.md @@ -61,3 +61,4 @@ terraform { ------ +