File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed
Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -399,12 +399,12 @@ jobs:
399399 # monitoring configuration *does not* require you to modify
400400 # this workflow.
401401 permissions_monitoring_config : ${{ vars.ACTIONS_PERMISSIONS_CONFIG }}
402- - name : Download docker image artifact
402+ - name : Download Docker image artifact
403403 uses : actions/download-artifact@v4
404404 with :
405405 name : dist
406406 path : dist
407- - name : Load docker image
407+ - name : Load Docker image
408408 run : docker load < dist/image.tar.gz
409409 - name : Run Trivy vulnerability scanner
410410 uses : aquasecurity/trivy-action@0.32.0
@@ -470,12 +470,12 @@ jobs:
470470 run : |
471471 python -m pip install --upgrade pip setuptools wheel
472472 pip install --upgrade --requirement requirements-test.txt
473- - name : Download docker image artifact
473+ - name : Download Docker image artifact
474474 uses : actions/download-artifact@v4
475475 with :
476476 name : dist
477477 path : dist
478- - name : Load docker image
478+ - name : Load Docker image
479479 run : docker load < dist/image.tar.gz
480480 - name : Run tests
481481 env :
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ docker run cisagov/example:0.2.2+build.1
3737 services :
3838 example :
3939 environment :
40- - ECHO_MESSAGE="Hello from docker compose "
40+ - ECHO_MESSAGE="Hello from Docker Compose "
4141 image : cisagov/example:0.2.2+build.1
4242 ports :
4343 - protocol : tcp
@@ -82,7 +82,7 @@ environment variables. See the
8282 services:
8383 example:
8484 environment:
85- - ECHO_MESSAGE="Hello from docker compose "
85+ - ECHO_MESSAGE="Hello from Docker Compose "
8686 image: cisagov/example:0.2.2+build.1
8787 ports:
8888 - protocol: tcp
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ services:
1616 context : .
1717 dockerfile : Dockerfile
1818 environment :
19- - ECHO_MESSAGE=Hello World from docker compose !
19+ - ECHO_MESSAGE=Hello World from Docker Compose !
2020 image : cisagov/example
2121 init : true
2222 ports :
Original file line number Diff line number Diff line change 99from semver import parse_version_info
1010
1111ENV_VAR = "ECHO_MESSAGE"
12- ENV_VAR_VAL = "Hello World from docker compose !"
12+ ENV_VAR_VAL = "Hello World from Docker Compose !"
1313READY_MESSAGE = "This is a debug message"
1414DIVISION_MESSAGE = "8 / 2 == 4.000000"
1515SECRET_QUOTE = "Three may keep a secret, if two of them are dead." # nosec
You can’t perform that action at this time.
0 commit comments