Skip to content

deps(actions): Bump github/codeql-action from 3.29.2 to 3.30.5 #2669

deps(actions): Bump github/codeql-action from 3.29.2 to 3.30.5

deps(actions): Bump github/codeql-action from 3.29.2 to 3.30.5 #2669

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
# only run on PRs targeting main
branches: [ main ]
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
linux-build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
goarch: [ '386', 'amd64' ]
container:
image: ghcr.io/hairyhenderson/gomplate-ci-build
steps:
- run: |
git config --global user.email "[email protected]"
git config --global user.name "Someone"
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
persist-credentials: false
- run: make test GOARCH=${{ matrix.goarch }}
fscli-build:
runs-on: ubuntu-latest
strategy:
matrix:
platform: [ linux-amd64, linux-arm-v7, linux-arm64, linux-ppc64le, darwin-amd64, darwin-arm64, windows-amd64.exe ]
container:
image: ghcr.io/hairyhenderson/gomplate-ci-build:latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
persist-credentials: false
- name: Build fscli
run: |
make bin/fscli_${{ matrix.platform }}
windows-build:
runs-on: windows-latest
env:
TMP: D:\a\tmp
steps:
- run: pwd
- run: |
git config --global user.email "[email protected]"
git config --global user.name "Someone"
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
persist-credentials: false
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
with:
go-version-file: 'go.mod'
- run: make test