Skip to content

chore(deps): bump github.com/opencontainers/runc from 1.1.3 to 1.1.5 #1118

chore(deps): bump github.com/opencontainers/runc from 1.1.3 to 1.1.5

chore(deps): bump github.com/opencontainers/runc from 1.1.3 to 1.1.5 #1118

Workflow file for this run

name: Redis example pipeline
on:
push:
paths-ignore:
- 'mkdocs.yml'
- 'docs/**'
- 'README.md'
pull_request:
paths-ignore:
- 'mkdocs.yml'
- 'docs/**'
- 'README.md'
concurrency:
group: "${{ github.workflow }}-${{ github.head_ref || github.sha }}"
cancel-in-progress: true
jobs:
test-redis:
strategy:
matrix:
go-version: [1.19.x, 1.x]
runs-on: "ubuntu-latest"
steps:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: modVerify
working-directory: ./examples/redis
run: go mod verify
- name: modTidy
working-directory: ./examples/redis
run: make tools-tidy
- name: gotestsum
working-directory: ./examples/redis
run: make test-unit
- name: Run checker
run: |
./scripts/check_environment.sh
- name: Test Summary
uses: test-summary/action@4ee9ece4bca777a38f05c8fc578ac2007fe266f7
with:
paths: "**/TEST-redis*.xml"
if: always()