Bump the all-actions group across 16 directories with 1 update #69
Workflow file for this run
This file contains hidden or 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 deploy-lambda-function action' | |
| on: | |
| pull_request: | |
| paths: | |
| - actions/deploy-lambda-function/* | |
| - .github/actions/test-deploy-lambda-function/* | |
| - .github/workflows/test-deploy-lambda-function.yml | |
| permissions: | |
| id-token: write | |
| contents: read | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| test-deploy-lambda-function-action: | |
| name: 'Uses the deploy-lambda-function action' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 'Checkout actions' | |
| uses: actions/checkout@v5 | |
| - name: 'Test deploy-lambda-function action' | |
| uses: ./.github/actions/test-deploy-lambda-function | |
| with: | |
| aws-account-id: ${{ secrets.AWS_ACCOUNT_ID }} |