Skip to content

Bump actions/checkout from 4.1.5 to 4.1.6 #2415

Bump actions/checkout from 4.1.5 to 4.1.6

Bump actions/checkout from 4.1.5 to 4.1.6 #2415

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@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- 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@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- 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