chore(deps): update docker.io/owasp/modsecurity-crs docker tag to v3.3.5-apache-202402140602 #121
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
name: Test | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test_3_3: | |
name: Docker build v3.3 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build image | |
run: docker build -t test v3.3 | |
- name: Run image | |
run: docker run -d --name apache test | |
- name: Verify | |
run: | | |
[ $(docker inspect apache --format='{{.State.Running}}') = 'true' ] |