We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96fd34f commit 0b8cd5aCopy full SHA for 0b8cd5a
.github/workflows/test.yml
@@ -10,12 +10,17 @@ jobs:
10
runs-on: ubuntu-latest
11
12
steps:
13
- - uses: actions/checkout@v3
+ - name: Checkout
14
+ uses: actions/checkout@v3
15
+
16
- name: Build the Docker image
- run: cd .devcontainer && docker build . --file Dockerfile --tag aws-terraform-dev-container:$(date +%s)
17
+ run: cd .devcontainer && docker build . --file Dockerfile --tag aws-terraform-dev-container:${{ github.run_id }}
18
- # - name: Display AWS CLI version
- # run: make aws/cli-version
19
+ run:
20
+ runs-on: aws-terraform-dev-container:${{ github.run_id }}
21
+ steps:
22
+ - name: Display AWS CLI version
23
+ run: make aws/cli-version
24
25
# - name: Run Checkov
26
# run: make checkov/run
0 commit comments