From 095394f7c06cf97c1b2f0063ac886d49c7cb5d51 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 7 May 2024 15:14:31 +1000 Subject: [PATCH] build(deps): Bump ikalnytskyi/action-setup-postgres from 5 to 6 (#1537) * build(deps): Bump ikalnytskyi/action-setup-postgres from 5 to 6 Bumps [ikalnytskyi/action-setup-postgres](https://github.com/ikalnytskyi/action-setup-postgres) from 5 to 6. - [Release notes](https://github.com/ikalnytskyi/action-setup-postgres/releases) - [Commits](https://github.com/ikalnytskyi/action-setup-postgres/compare/v5...v6) --- updated-dependencies: - dependency-name: ikalnytskyi/action-setup-postgres dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] * CI: Update GHA workflow --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Adrian Gallagher --- .github/workflows/tests.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index edb3c595..b2413c0e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -40,7 +40,7 @@ jobs: - name: Setup Postgres if: matrix.psql == true - uses: ikalnytskyi/action-setup-postgres@v5 + uses: ikalnytskyi/action-setup-postgres@v6 with: database: gct_dev_ci id: postgres @@ -74,9 +74,14 @@ jobs: - name: Additional steps for 386 architecture if: matrix.goarch == '386' run: | - echo "CGO_ENABLED=1" >> $GITHUB_ENV sudo apt-get update - sudo apt-get install gcc-multilib g++-multilib + sudo apt-get install -y gcc-multilib + shell: bash + + - name: Set CGO_ENABLED for 386 and macos-latest + if: matrix.goarch == '386' || matrix.os == 'macos-latest' + run: | + echo "CGO_ENABLED=1" >> $GITHUB_ENV shell: bash - name: Test