Skip to content

Bump github/codeql-action from 2.13.4 to 3.25.8 #2440

Bump github/codeql-action from 2.13.4 to 3.25.8

Bump github/codeql-action from 2.13.4 to 3.25.8 #2440

Workflow file for this run

name: test
on:
push:
pull_request:
jobs:
provider:
runs-on: ubuntu-latest
timeout-minutes: 5
permissions:
id-token: write
contents: read
environment: development
steps:
- name: Checkout
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
- name: Set up Go
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
with:
cache: true
go-version-file: provider/github-app-token/go.mod
cache-dependency-path: provider/github-app-token/go.sum
- name: Test
run: |
make test
working-directory: provider/github-app-token
action:
runs-on: ${{ matrix.os }}
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
steps:
- name: Checkout
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
- name: Set up Go
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
with:
cache: true
go-version-file: provider/github-app-token/go.mod
cache-dependency-path: provider/github-app-token/go.sum
- name: Set up Node.js
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version-file: action/package.json
cache: "npm"
cache-dependency-path: action/package-lock.json
- name: Install dependencies
run: |
npm ci
working-directory: action
- name: Test
run: |
npm run test
working-directory: action