Skip to content

build(deps): bump github.com/docker/docker from 28.5.1+incompatible to 28.5.2+incompatible in /src/go/guestagent #4638

build(deps): bump github.com/docker/docker from 28.5.1+incompatible to 28.5.2+incompatible in /src/go/guestagent

build(deps): bump github.com/docker/docker from 28.5.1+incompatible to 28.5.2+incompatible in /src/go/guestagent #4638

Workflow file for this run

name: Test
on:
push: {}
pull_request: {}
permissions: {}
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- uses: ./.github/actions/yarn-install
- run: yarn build
- run: yarn lint:nofix
- name: Install shfmt
run: go install mvdan.cc/sh/v3/cmd/shfmt@latest
- run: make -C bats lint
- run: yarn test
lint:
strategy:
matrix:
# We run the Linux lint in the `test` flow, no need to repeat it.
runs-on: [windows-latest, macos-latest]
runs-on: ${{ matrix.runs-on }}
steps:
- if: runner.os == 'Windows'
name: Configure git to use Unix line endings
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- uses: ./.github/actions/yarn-install
- run: yarn license-check
- run: ./scripts/go-license-check.sh
shell: bash
- run: yarn lint:nofix