Bump github.com/docker/docker from 27.1.1+incompatible to 27.1.2+incompatible in the go_modules group across 1 directory #264
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- '**' | |
name: Tests with spanner emulator | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
services: | |
spanner: | |
env: | |
SPANNER_INSTANCE_ID: ${{env.SPANNER_INSTANCE_ID}} | |
SPANNER_PROJECT_ID: ${{env.SPANNER_PROJECT_ID}} | |
image: roryq/spanner-emulator:latest | |
ports: | |
- 9010:9010 | |
dind: | |
image: docker:23.0-rc-dind-rootless | |
ports: | |
- 2375:2375 | |
env: | |
SPANNER_INSTANCE_ID: inst | |
SPANNER_PROJECT_ID: proj | |
SPANNER_EMULATOR_HOST: localhost:9010 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: Test | |
run: go test ./... -v |