Skip to content

Commit 236fe6f

Browse files
committed
Merge main into mng-node-repair, keeping main branch changes for go.mod and go.sum
2 parents e3a3c00 + 5f55c80 commit 236fe6f

File tree

145 files changed

+22856
-6368
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

145 files changed

+22856
-6368
lines changed

.github/.goreleaser-local.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
version: 2
12
builds:
23
- id: default
34
main: ./cmd/eksctl
@@ -18,12 +19,14 @@ builds:
1819

1920
archives:
2021
- id: default
21-
builds:
22+
ids:
2223
- default
2324
name_template: "eksctl_{{ title .Os }}_{{ .Arch }}"
24-
format: tar.gz
25+
formats:
26+
- tar.gz
2527
format_overrides:
2628
- goos: windows
27-
format: zip
29+
formats:
30+
- zip
2831
files:
2932
- none*

.github/.goreleaser.brew.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
brews:
2-
- tap:
2+
- repository:
33
owner: weaveworks
44
name: homebrew-tap
55

66
commit_author:
77
name: eksctl-bot
88
email: 53547694+eksctl-bot@users.noreply.github.com
99

10-
folder: Formula
10+
directory: Formula
1111

1212
homepage: "https://eksctl.io/"
1313

.github/.goreleaser.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
version: 2
12
release:
23
name_template: "{{ .ProjectName }} {{ .Env.RELEASE_DESCRIPTION }}"
34
prerelease: auto # this should detect a release candidate and mark it as pre-release in GitHub
@@ -22,20 +23,18 @@ builds:
2223
goarch:
2324
- amd64
2425
- arm64
25-
- arm
26-
goarm:
27-
- 6
28-
- 7
2926

3027
archives:
3128
- id: default
32-
builds:
29+
ids:
3330
- default
3431
name_template: "eksctl_{{ title .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
35-
format: tar.gz
32+
formats:
33+
- tar.gz
3634
format_overrides:
3735
- goos: windows
38-
format: zip
36+
formats:
37+
- zip
3938
files:
4039
- none*
4140

.github/actions/setup-build/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ runs:
88
- name: Setup Go
99
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 #v5.3.0
1010
with:
11-
go-version: ~1.24.0
11+
go-version: ~1.25.0
1212
cache: false
1313
- name: Cache go-build and mod
1414
uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 #v4.2.0

.github/workflows/build-all-distros-nightly.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
swap-storage: true
2828

2929
- name: Checkout
30-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #v4.2.2
30+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 #v5.0.0
3131
with:
3232
fetch-depth: 0
3333
- name: Setup build environment
@@ -41,9 +41,9 @@ jobs:
4141
run: |
4242
make generate-always
4343
- name: Run GoReleaser
44-
uses: goreleaser/goreleaser-action@9c156ee8a17a598857849441385a2041ef570552 #v6.3.0
44+
uses: goreleaser/goreleaser-action@e435ccd777264be153ace6237001ef4d979d3a7a #v6.4.0
4545
with:
46-
version: v1.24.0
46+
version: v2.12.5
4747
args: --config=.github/.goreleaser-local.yaml --snapshot --skip=publish --clean
4848
env:
4949
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/docker-publish.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #v4.2.2
13+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 #v5.0.0
1414
- name: Extract metadata (tags, labels) for Docker
1515
id: meta
1616
uses: docker/metadata-action@902fa8ec7d6ecbf8d84d538b9b233a880e428804 #5.7.0
1717
with:
1818
images: weaveworks/eksctl
1919
- name: Log in to Docker Hub
20-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 #v3.4.0
20+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef #v3.6.0
2121
with:
2222
username: weaveworkseksctlci
2323
password: ${{ secrets.DOCKER_HUB_PASSWORD }}

.github/workflows/ecr-publish.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout repo
17-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #v4.2.2
17+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 #v5.0.0
1818

1919
- name: Configure AWS credentials
20-
uses: aws-actions/configure-aws-credentials@b47578312673ae6fa5b5096b330d9fbac3d116df # v4.2.1
20+
uses: aws-actions/configure-aws-credentials@a03048d87541d1d9fcf2ecf528a4a65ba9bd7838 # v5.0.0
2121
with:
2222
aws-region: us-east-1
2323
role-duration-seconds: 7200

.github/workflows/greetings.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
issues: write
1010
pull-requests: write
1111
steps:
12-
- uses: actions/first-interaction@34f15e814fe48ac9312ccf29db4e74fa767cbab7 #v1.3.0
12+
- uses: actions/first-interaction@753c925c8d1ac6fede23781875376600628d9b5d #v3.0.0
1313
with:
1414
repo-token: ${{ secrets.GITHUB_TOKEN }}
1515
issue-message: 'Hello ${{ github.event.issue.user.login }} :wave: Thank you for opening an issue in `eksctl` project. The team will review the issue and aim to respond within 1-5 business days. Meanwhile, please read about the Contribution and Code of Conduct guidelines [here](https://github.com/eksctl-io/eksctl#contributions). You can find out more information about `eksctl` on our [website](https://eksctl.io)'

.github/workflows/publish-docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #v4.2.2
13+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 #v5.0.0
1414
with:
1515
token: ${{ secrets.EKSCTLBOT_TOKEN }}
1616
fetch-depth: 0

.github/workflows/publish-release.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
echo "Available storage:"
2727
df -h
2828
- name: Checkout
29-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #v4.2.2
29+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 #v5.0.0
3030

3131
- name: Set variables
3232
id: vars
@@ -57,19 +57,19 @@ jobs:
5757

5858
- name: GoReleaser Release
5959
if: ${{ !inputs.isReleaseCandidate }}
60-
uses: goreleaser/goreleaser-action@9c156ee8a17a598857849441385a2041ef570552 #v6.3.0
60+
uses: goreleaser/goreleaser-action@e435ccd777264be153ace6237001ef4d979d3a7a #v6.4.0
6161
with:
62-
version: v1.24.0
62+
version: v2.12.5
6363
args: release --clean --timeout 60m --skip=validate --config=.github/.goreleaser.brew.combined.yml --release-notes="${{env.RELEASE_NOTES_FILE}}"
6464
env:
6565
GITHUB_TOKEN: ${{ secrets.customToken }}
6666
PRE_RELEASE_ID:
6767

6868
- name: GoReleaser Release Candidate
6969
if: ${{ inputs.isReleaseCandidate }}
70-
uses: goreleaser/goreleaser-action@9c156ee8a17a598857849441385a2041ef570552 #v6.3.0
70+
uses: goreleaser/goreleaser-action@e435ccd777264be153ace6237001ef4d979d3a7a #v6.4.0
7171
with:
72-
version: v1.24.0
72+
version: v2.12.5
7373
args: release --clean --timeout 60m --skip=validate --config=.github/.goreleaser.yml --release-notes="${{env.RELEASE_NOTES_FILE}}"
7474
env:
7575
GITHUB_TOKEN: ${{ secrets.customToken }}

0 commit comments

Comments
 (0)