Skip to content

Commit aaa0cee

Browse files
committed
Merge remote-tracking branch 'origin/main' into chore/dropping-utils
2 parents 4f7a55d + 474824f commit aaa0cee

File tree

15 files changed

+37
-37
lines changed

15 files changed

+37
-37
lines changed

.github/workflows/base-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ jobs:
3434
shell: bash
3535

3636
- name: Go Build Cache
37-
uses: actions/cache@v4
37+
uses: actions/cache@v5
3838
with:
3939
path: ${{ steps.go-cache-paths.outputs.go-build }}
4040
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}-${{ matrix.os }}-amd64
4141

4242
- name: Go Mod Cache
43-
uses: actions/cache@v4
43+
uses: actions/cache@v5
4444
with:
4545
path: ${{ steps.go-cache-paths.outputs.go-mod }}
4646
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}-${{ matrix.os }}-amd64
@@ -56,7 +56,7 @@ jobs:
5656
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5757

5858
- name: Upload Report (${{ matrix.os }})
59-
uses: actions/upload-artifact@v5
59+
uses: actions/upload-artifact@v6
6060
with:
6161
name: test-report-${{ matrix.os }}
6262
path: result.xml

.github/workflows/build-no-proxy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
echo "go-build=$(go env GOCACHE)" >> "$GITHUB_OUTPUT"
4444
4545
- name: Go Build Cache
46-
uses: actions/cache@v4
46+
uses: actions/cache@v5
4747
with:
4848
path: ${{ steps.go-cache-paths.outputs.go-build }}
4949
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}-${{ matrix.os }}-${{ matrix.arch }}

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
echo "go-build=$(go env GOCACHE)" >> "$GITHUB_OUTPUT"
6767
6868
- name: Go Build Cache
69-
uses: actions/cache@v4
69+
uses: actions/cache@v5
7070
with:
7171
path: ${{ steps.go-cache-paths.outputs.go-build }}
7272
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}-${{ matrix.os }}-${{ matrix.arch }}
@@ -97,7 +97,7 @@ jobs:
9797
.github/scripts/release/verify-static-binary.sh "${OUTPUT}" "${GOOS}" "${GOARCH}"
9898
9999
- name: Upload Build Artifact
100-
uses: actions/upload-artifact@v5
100+
uses: actions/upload-artifact@v6
101101
with:
102102
name: terragrunt_${{ matrix.os }}_${{ matrix.arch }}
103103
path: bin/terragrunt_${{ matrix.os }}_${{ matrix.arch }}*
@@ -127,7 +127,7 @@ jobs:
127127
uses: actions/checkout@v6
128128

129129
- name: Download macOS signed binaries
130-
uses: actions/download-artifact@v6
130+
uses: actions/download-artifact@v7
131131
with:
132132
name: macos-signed-files
133133
path: bin/
@@ -175,13 +175,13 @@ jobs:
175175
done
176176
177177
- name: Download Windows signed binaries
178-
uses: actions/download-artifact@v6
178+
uses: actions/download-artifact@v7
179179
with:
180180
name: windows-signed-files
181181
path: bin/
182182

183183
- name: Download Linux binaries (unsigned)
184-
uses: actions/download-artifact@v6
184+
uses: actions/download-artifact@v7
185185
with:
186186
pattern: terragrunt_linux_*
187187
path: bin/
@@ -193,7 +193,7 @@ jobs:
193193
ls -lahrt bin/*
194194
195195
- name: Upload All Signed Binaries
196-
uses: actions/upload-artifact@v5
196+
uses: actions/upload-artifact@v6
197197
with:
198198
name: all-signed-binaries
199199
path: bin/*

.github/workflows/flake.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
shell: bash
4444

4545
- name: Go Build Cache
46-
uses: actions/cache@v4
46+
uses: actions/cache@v5
4747
with:
4848
path: ${{ steps.go-cache-paths.outputs.go-build }}
4949
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}-${{ matrix.flake.os }}-amd64
@@ -61,7 +61,7 @@ jobs:
6161
TIMEOUT: ${{ matrix.flake.timeout }}
6262

6363
- name: Upload Report (${{ matrix.flake.name }})
64-
uses: actions/upload-artifact@v5
64+
uses: actions/upload-artifact@v6
6565
with:
6666
name: test-report-${{ matrix.flake.name }}
6767
path: result.xml

.github/workflows/integration-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ jobs:
216216
shell: bash
217217

218218
- name: Go Build Cache
219-
uses: actions/cache@v4
219+
uses: actions/cache@v5
220220
with:
221221
path: ${{ steps.go-cache-paths.outputs.go-build }}
222222
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}-${{ matrix.integration.os }}-amd64
@@ -250,7 +250,7 @@ jobs:
250250
HAS_DOCKER: ${{ runner.os == 'Linux' }}
251251

252252
- name: Upload Test Results (${{ matrix.integration.name }})
253-
uses: actions/upload-artifact@v5
253+
uses: actions/upload-artifact@v6
254254
with:
255255
name: test-results-${{ matrix.integration.name }}
256256
path: |

.github/workflows/license-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3333

3434
- name: Upload License Check Report
35-
uses: actions/upload-artifact@v5
35+
uses: actions/upload-artifact@v6
3636
with:
3737
name: license-check-report-ubuntu
3838
path: license-check.log

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,19 @@ jobs:
3232
echo "golanci-lint-cache=/home/runner/.cache/golangci-lint" >> "$GITHUB_OUTPUT"
3333
3434
- name: Go Build Cache
35-
uses: actions/cache@v4
35+
uses: actions/cache@v5
3636
with:
3737
path: ${{ steps.go-cache-paths.outputs.go-build }}
3838
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}-linux-amd64
3939

4040
- name: Go Mod Cache
41-
uses: actions/cache@v4
41+
uses: actions/cache@v5
4242
with:
4343
path: ${{ steps.go-cache-paths.outputs.go-mod }}
4444
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}-linux-amd64
4545

4646
- name: golangci-lint Cache
47-
uses: actions/cache@v4
47+
uses: actions/cache@v5
4848
with:
4949
path: ${{ steps.go-cache-paths.outputs.golanci-lint-cache }}
5050
key: ${{ runner.os }}-golangci-lint-${{ hashFiles('**/go.sum') }}-linux-amd64

.github/workflows/oidc-integration-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
shell: bash
9494

9595
- name: Go Build Cache
96-
uses: actions/cache@v4
96+
uses: actions/cache@v5
9797
with:
9898
path: ${{ steps.go-cache-paths.outputs.go-build }}
9999
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}-${{ matrix.integration.os }}-amd64
@@ -120,7 +120,7 @@ jobs:
120120
TEST_ARGS: ${{ matrix.integration.test_args }}
121121

122122
- name: Upload Report (${{ matrix.integration.name }})
123-
uses: actions/upload-artifact@v5
123+
uses: actions/upload-artifact@v6
124124
with:
125125
name: test-report-${{ matrix.integration.name }}
126126
path: result.xml

.github/workflows/precommit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
echo "go-build=$(go env GOCACHE)" >> "$GITHUB_OUTPUT"
2929
3030
- name: Go Build Cache
31-
uses: actions/cache@v4
31+
uses: actions/cache@v5
3232
with:
3333
path: ${{ steps.go-cache-paths.outputs.go-build }}
3434
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}-linux-amd64

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
run: .github/scripts/release/check-release-exists.sh
5656

5757
- name: Download pre-built signed binaries
58-
uses: actions/download-artifact@v6
58+
uses: actions/download-artifact@v7
5959
with:
6060
name: all-signed-binaries
6161
path: bin/

0 commit comments

Comments
 (0)