⬆️ deps(github-actions): update chainguard-dev/actions digest to 090a9c2 #272
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: Code check On outscale | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| id-token: write | |
| jobs: | |
| code-check: | |
| runs-on: [authenticated, Linux] | |
| if: "! contains(github.event.pull_request.labels.*.name, 'dependencies')" | |
| steps: | |
| - name: 🔒🧹 Setup Vault & Frieza | |
| id: secrets | |
| uses: outscale/.github/vault-frieza-clean@eb7bd1e0360703d0ad355bce46029ae8d49bac04 | |
| with: | |
| vault_role: outscale-osc-sdk-python | |
| osc_account: elm | |
| - name: ⬇️ Checkout repository | |
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 | |
| - name: Setup toolchain | |
| uses: ./.github/actions/setup-test | |
| - name: 🧪 Run integration tests | |
| env: | |
| OSC_ACCESS_KEY: ${{ steps.secrets.outputs.access_key }} | |
| OSC_SECRET_KEY: ${{ steps.secrets.outputs.secret_key }} | |
| OSC_REGION: ${{ steps.secrets.outputs.region }} | |
| run: make test-int |