Skip to content

chore(deps): update module github.com/aws/aws-sdk-go-v2/service/firehose to v1.35.0 #438

chore(deps): update module github.com/aws/aws-sdk-go-v2/service/firehose to v1.35.0

chore(deps): update module github.com/aws/aws-sdk-go-v2/service/firehose to v1.35.0 #438

Workflow file for this run

---
name: Verify
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
permissions:
contents: read
env:
GO111MODULE: "on"
jobs:
conform:
runs-on: ubuntu-latest
name: Conform
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
- uses: siderolabs/conform@6380738b7fdfc68b208ce0674c4ac1ba314ba600 # v0.1.0-alpha.27
with:
token: ${{ secrets.GITHUB_TOKEN }}
build:
runs-on: ubuntu-latest
name: Build Plugin
strategy:
max-parallel: 4
matrix:
go-version: [ 1.23.x ]
steps:
- uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
with:
egress-policy: audit
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
- uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
with:
go-version: '${{ matrix.go-version }}'
- run: |
make build
lint:
runs-on: ubuntu-latest
name: Lint Plugin
strategy:
max-parallel: 4
matrix:
go-version: [ 1.23.x ]
golangci-lint-version: [v1.60.3]
steps:
- uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
with:
egress-policy: audit
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
- uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
with:
go-version: '${{ matrix.go-version }}'
- uses: golangci/golangci-lint-action@971e284b6050e8a5849b72094c50ab08da042db8 # v6.1.1
with:
version: '${{ matrix.golangci-lint-version }}'
args: -c .golangci.yml
skip-cache: true
skip-save-cache: true
tests:
runs-on: ubuntu-latest
name: Run Tests
strategy:
matrix:
go-version: [ 1.23.x ]
steps:
- uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
with:
egress-policy: audit
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
- uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0
with:
go-version: '${{ matrix.go-version }}'
- run: |
make test
- uses: shogo82148/actions-goveralls@785c9d68212c91196d3994652647f8721918ba11 # v1.9.0
with:
path-to-profile: coverage.out