build(deps): bump github/codeql-action from 3.27.7 to 3.27.9 #108
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: CI | |
on: | |
push: | |
branches: [main] | |
workflow_dispatch: | |
permissions: read-all | |
jobs: | |
test_actions: | |
name: Test actions | |
runs-on: ubuntu-latest | |
permissions: | |
contents: 'read' | |
id-token: 'write' | |
steps: | |
- name: Checkout for testing preparation | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
- name: Use Node.js current version | |
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af | |
with: | |
node-version: current | |
- name: Install package dependencies | |
run: npm ci | |
- name: Build the actions | |
run: npm run build | |
- name: Test actions for simple action | |
uses: ./ | |
with: | |
serviceId: ${{ secrets.RENDER_SERVICE_ID }} | |
apiKey: ${{ secrets.RENDER_API_KEY }} | |
multipleDeployment: false #optional, default true |