From 7ec9241fcf2f323ca841b0e8abac8fabcc91e9e3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 16 Jan 2025 21:03:31 +0000 Subject: [PATCH 1/3] build(deps): bump golangci/golangci-lint-action Bumps the github-actions group with 1 update: [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action). Updates `golangci/golangci-lint-action` from 6.1.1 to 6.2.0 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](https://github.com/golangci/golangci-lint-action/compare/v6.1.1...v6.2.0) --- updated-dependencies: - dependency-name: golangci/golangci-lint-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index fbc9ea41009f..7fc77dfe2397 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -41,7 +41,7 @@ jobs: # - 1.18rc1 -> 1.18.0-rc.1 go-version: ${{ env.GO_VERSION }} - name: lint - uses: golangci/golangci-lint-action@v6.1.1 + uses: golangci/golangci-lint-action@v6.2.0 with: version: latest From 237eef42c1e2a5b590fa1e1d91fa8fc57974a9e4 Mon Sep 17 00:00:00 2001 From: Fernandez Ludovic Date: Thu, 16 Jan 2025 22:15:07 +0100 Subject: [PATCH 2/3] chore: add linux arm64 --- .github/workflows/pr.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 7fc77dfe2397..d8732c108d96 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -69,12 +69,15 @@ jobs: tests-on-unix: needs: golangci-lint # run after golangci-lint action to not produce duplicated errors - runs-on: ubuntu-latest strategy: matrix: + os: + - ubuntu-latest + - ubuntu-24.04-arm golang: - '1.22' - '1.23' + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 From 06850bced06fa1d3004c0cdb0eb83adef9849382 Mon Sep 17 00:00:00 2001 From: Fernandez Ludovic Date: Thu, 16 Jan 2025 22:20:29 +0100 Subject: [PATCH 3/3] chore: add linux arm64 --- .github/workflows/pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index d8732c108d96..7ee879e031d6 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -106,7 +106,7 @@ jobs: name: Installation script (local) strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-latest] + os: [ubuntu-latest, ubuntu-24.04-arm, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4