removed lambda, changed to checking out devplatform-demo-sam-app repo #15
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: Run act | |
on: | |
workflow_dispatch: | |
push: | |
defaults: | |
run: | |
shell: bash | |
working-directory: ./ | |
jobs: | |
check-actions: | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
permissions: | |
id-token: write | |
contents: read | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
- name: Checkout devplatform-demo-sam-app repo | |
uses: actions/checkout@v4 | |
with: | |
repository: 'govuk-one-login/devplatform-demo-sam-app' | |
ref: 'bau-spike-on-act' | |
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | |
token: ${{ secrets.DEMO_REPO_TOKEN }} | |
path: 'devplatform-demo-sam-app' | |
- name: update workflows | |
run: sed -i 's/devplatform-upload-action*/devplatform-upload-action@${{ github.sha }}/' ./devplatform-demo-sam-app/.github/workflows/sam-app-deploy-testing-upload-action.yml | |
- name: check workflow | |
run: cat ./devplatform-demo-sam-app/.github/workflows/sam-app-deploy-testing-upload-action.yml | |
- name: Install act | |
run: curl --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/nektos/act/master/install.sh | sudo bash | |
- name: Run act | |
run: | | |
./bin/act -s ACT_BUCKET_NAME=${{ secrets.ACT_BUCKET_NAME }} \ | |
-s SIGNING_PROFILE_NAME=${{ secrets.SIGNING_PROFILE_NAME }} \ | |
-s ACT_ROLE_ARN=${{ secrets.ACT_ROLE_ARN }} \ | |
-s OIDC_DEBUGGING_TOKEN=${{ secrets.OIDC_DEBUGGING_TOKEN }} \ | |
--env ACTIONS_ID_TOKEN_REQUEST_URL=$ACTIONS_ID_TOKEN_REQUEST_URL \ | |
--env ACTIONS_ID_TOKEN_REQUEST_TOKEN=$ACTIONS_ID_TOKEN_REQUEST_TOKEN |