Upgrade actions to use the latest version and so remove NodeJS warning #25
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: Build | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- run: jq --version; aws --version; terraform --version | |
- run: git clone https://github.com/tfutils/tfenv.git ~/.tfenv | |
- run: ~/.tfenv/bin/tfenv install | |
- uses: actions/checkout@v4 | |
- run: tests/tests.sh | |
- uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: logs | |
path: test-reports/**/* |