mirror of
https://github.com/getsops/sops.git
synced 2026-02-05 12:45:21 +01:00
Bumps the ci group with 4 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact), [github/codeql-action](https://github.com/github/codeql-action) and [anchore/sbom-action](https://github.com/anchore/sbom-action). Updates `actions/upload-artifact` from 4.6.2 to 5.0.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](ea165f8d65...330a01c490) Updates `actions/download-artifact` from 5.0.0 to 6.0.0 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](634f93cb29...018cc2cf5b) Updates `github/codeql-action` from 4.30.9 to 4.31.0 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](16140ae1a1...4e94bd11f7) Updates `anchore/sbom-action` from 0.20.8 to 0.20.9 - [Release notes](https://github.com/anchore/sbom-action/releases) - [Changelog](https://github.com/anchore/sbom-action/blob/main/RELEASE.md) - [Commits](aa0e114b2e...8e94d75ddd) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci - dependency-name: actions/download-artifact dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: ci - dependency-name: github/codeql-action dependency-version: 4.31.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: ci - dependency-name: anchore/sbom-action dependency-version: 0.20.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: ci ... Signed-off-by: dependabot[bot] <support@github.com>
152 lines
5.0 KiB
YAML
152 lines
5.0 KiB
YAML
name: CLI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
name: Build and test ${{ matrix.os }} ${{ matrix.arch }} ${{ matrix.go-version }}
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
os: [linux, darwin, windows]
|
|
arch: [amd64, arm64]
|
|
go-version: ['1.24', '1.25']
|
|
exclude:
|
|
- os: windows
|
|
arch: arm64
|
|
env:
|
|
VAULT_VERSION: "1.14.0"
|
|
VAULT_TOKEN: "root"
|
|
VAULT_ADDR: "http://127.0.0.1:8200"
|
|
steps:
|
|
- name: Set up Go ${{ matrix.go-version }}
|
|
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
id: go
|
|
|
|
- name: Check out code into the Go module directory
|
|
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
|
|
with:
|
|
path: ~/go/pkg/mod
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-go-
|
|
|
|
- name: Vendor Go Modules
|
|
run: make vendor
|
|
|
|
- name: Ensure clean working tree
|
|
run: git diff --exit-code
|
|
|
|
- name: Build ${{ matrix.os }}
|
|
if: matrix.os != 'windows'
|
|
run: GOOS=${{ matrix.os }} GOARCH=${{ matrix.arch }} go build -o sops-${{ matrix.go-version }}-${{ matrix.os }}-${{ matrix.arch }}-${{ github.sha }} -v ./cmd/sops
|
|
|
|
- name: Build ${{ matrix.os }}
|
|
if: matrix.os == 'windows'
|
|
run: GOOS=${{ matrix.os }} go build -o sops-${{ matrix.go-version }}-${{ matrix.os }}-${{ github.sha }} -v ./cmd/sops
|
|
|
|
- name: Import test GPG keys
|
|
run: for i in 1 2 3 4 5; do gpg --import pgp/sops_functional_tests_key.asc && break || sleep 15; done
|
|
|
|
- name: Test
|
|
run: make test
|
|
|
|
- name: Upload artifact for ${{ matrix.os }}
|
|
if: matrix.os != 'windows'
|
|
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
|
|
with:
|
|
name: sops-${{ matrix.go-version }}-${{ matrix.os }}-${{ matrix.arch }}-${{ github.sha }}
|
|
path: sops-${{ matrix.go-version }}-${{ matrix.os }}-${{ matrix.arch }}-${{ github.sha }}
|
|
|
|
- name: Upload artifact for ${{ matrix.os }}
|
|
if: matrix.os == 'windows'
|
|
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
|
|
with:
|
|
name: sops-${{ matrix.go-version }}-${{ matrix.os }}-${{ github.sha }}
|
|
path: sops-${{ matrix.go-version }}-${{ matrix.os }}-${{ github.sha }}
|
|
test:
|
|
name: Functional tests
|
|
runs-on: ubuntu-latest
|
|
needs: [build]
|
|
strategy:
|
|
matrix:
|
|
go-version: ['1.25']
|
|
env:
|
|
VAULT_VERSION: "1.14.0"
|
|
VAULT_TOKEN: "root"
|
|
VAULT_ADDR: "http://127.0.0.1:8200"
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
with:
|
|
persist-credentials: false
|
|
|
|
# Rustup will detect toolchain version and profile from rust-toolchain.toml
|
|
# It will download and install the toolchain and components automatically
|
|
# and make them available for subsequent commands
|
|
- name: Install Rust toolchain
|
|
run: rustup show
|
|
|
|
- name: Show Rust version
|
|
run: cargo --version
|
|
|
|
- uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
|
|
with:
|
|
name: sops-${{ matrix.go-version }}-linux-amd64-${{ github.sha }}
|
|
|
|
- name: Move SOPS binary
|
|
run: mv sops-${{ matrix.go-version }}-linux-amd64-${{ github.sha }} ./functional-tests/sops
|
|
|
|
- name: Make SOPS binary executable
|
|
run: chmod +x ./functional-tests/sops
|
|
|
|
- name: Download Vault
|
|
run: curl -O "https://releases.hashicorp.com/vault/${VAULT_VERSION}/vault_${VAULT_VERSION}_linux_amd64.zip" && sudo unzip vault_${VAULT_VERSION}_linux_amd64.zip -d /usr/local/bin/
|
|
|
|
- name: Start Vault server
|
|
run: vault server -dev -dev-root-token-id="$VAULT_TOKEN" &
|
|
|
|
- name: Enable Vault KV
|
|
run: vault secrets enable -version=1 kv
|
|
|
|
- name: Import test GPG keys
|
|
run: for i in 1 2 3 4 5; do gpg --import pgp/sops_functional_tests_key.asc && break || sleep 15; done
|
|
|
|
- name: Run tests
|
|
run: cargo test
|
|
working-directory: ./functional-tests
|
|
|
|
# The 'check' job should depend on all other jobs so it's possible to configure branch protection only for 'check'
|
|
# instead of having to explicitly list all individual jobs that need to pass.
|
|
check:
|
|
if: always()
|
|
|
|
needs:
|
|
- build
|
|
- test
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Decide whether the needed jobs succeeded or failed
|
|
uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2
|
|
with:
|
|
allowed-failures: docs, linters
|
|
allowed-skips: non-voting-flaky-job
|
|
jobs: ${{ toJSON(needs) }}
|