diff --git a/.github/workflows/changelog.yaml b/.github/workflows/changelog.yaml index e5115a5..037301e 100644 --- a/.github/workflows/changelog.yaml +++ b/.github/workflows/changelog.yaml @@ -8,7 +8,7 @@ jobs: changelog: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: "0" - name: Build changelog from PRs with labels diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 73f3591..a463304 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -8,7 +8,7 @@ jobs: provide_modules: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - id: set-matrix run: echo "::set-output name=matrix::$(find modules -mindepth 1 -maxdepth 1 -type d | jq -R | jq -sc)" outputs: @@ -24,7 +24,7 @@ jobs: run: working-directory: ${{ matrix.module }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Extract Terraform version from constraints in module run: echo TF_VERSION=$(grep "^[[:space:]]\+required_version = \"" providers.tf | cut -d= -f2- | tr -d ' "') >> $GITHUB_ENV - uses: hashicorp/setup-terraform@v2