Skip to content

chore(deps): bump actions/checkout in the github-actions group #2280

chore(deps): bump actions/checkout in the github-actions group

chore(deps): bump actions/checkout in the github-actions group #2280

name: Integration Tests
on:
workflow_dispatch: # Manual trigger only
pull_request:
branches: [ main ]
push:
permissions:
contents: read
jobs:
integration-test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout code
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
- name: Load GO version
id: versions
uses: ./.github/actions/load-go-version
- name: Set up Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c
with:
go-version: ${{ steps.versions.outputs.go-version }}
cache: true
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4.1.0
- name: Run integration tests
run: make integration-tests