mirror of
https://github.com/serverless/serverless.git
synced 2026-01-25 15:07:39 +00:00
Bumps the actions group with 1 update: [actions/setup-go](https://github.com/actions/setup-go).
Updates `actions/setup-go` from 6.1.0 to 6.2.0
- [Release notes](https://github.com/actions/setup-go/releases)
- [Commits](4dc6199c7b...7a3fe6cf4c)
---
updated-dependencies:
- dependency-name: actions/setup-go
dependency-version: 6.2.0
dependency-type: direct:production
update-type: version-update:semver-minor
dependency-group: actions
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
34 lines
814 B
YAML
34 lines
814 B
YAML
name: 'CI: Binary Installer'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
branches: [main]
|
|
paths:
|
|
- '.github/workflows/ci-binary-installer.yml'
|
|
- 'binary-installer/**'
|
|
|
|
defaults:
|
|
run:
|
|
working-directory: ./binary-installer
|
|
|
|
jobs:
|
|
test-binary-installer:
|
|
name: 'Test: Binary Installer'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: 'Checkout Code'
|
|
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
|
- name: 'Setup: Go'
|
|
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6.2.0
|
|
with:
|
|
go-version: '>=1.25'
|
|
cache-dependency-path: binary-installer/go.sum
|
|
- name: 'Test: Unit'
|
|
run: make test
|
|
- name: 'Build: Production'
|
|
run: make build-prod
|