diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3fb774dd..58a294ec 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,7 +15,7 @@ jobs: uses: hashicorp/setup-terraform@v3 - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.event.pull_request.head.ref }} @@ -30,7 +30,7 @@ jobs: run: terraform fmt -recursive - name: Build terraform docs - uses: terraform-docs/gh-actions@main + uses: terraform-docs/gh-actions@v1 with: config-file: ./modules/.terraform-docs.yml find-dir: ./modules @@ -45,6 +45,6 @@ jobs: run: sudo chown runner:docker -R .git - name: Git stage all, commit, and push - uses: stefanzweifel/git-auto-commit-action@v4 + uses: stefanzweifel/git-auto-commit-action@v5 with: commit_message: Continuous Integration - terraform fmt and terraform-docs diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f2de3bf7..41ace56b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,4 +12,4 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Create release - uses: softprops/action-gh-release@v1 \ No newline at end of file + uses: softprops/action-gh-release@v2 \ No newline at end of file diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5a3608c3..862f0b4b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -57,7 +57,7 @@ jobs: # Run Linter against code base - name: Run linter against all changed files - uses: super-linter/super-linter/slim@v6 + uses: super-linter/super-linter@v7 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} VALIDATE_MARKDOWN: false