Bump github.com/Masterminds/sprig/v3 from 3.2.3 to 3.3.0 #16
Workflow file for this run
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: Continuous Integration - PR | |
on: | |
pull_request: | |
jobs: | |
test-app: | |
name: Test Application | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.21 | |
- name: Test application | |
run: go test ./... | |
- name: Dry-run goreleaser application | |
uses: goreleaser/goreleaser-action@v5 | |
with: | |
distribution: goreleaser | |
version: latest | |
args: release --snapshot --skip-publish --clean | |
- name: Create temporary download for this PR for 1d | |
uses: actions/upload-artifact@v4 | |
with: | |
name: downloads | |
path: dist/ | |
if-no-files-found: error | |
retention-days: 1 |