mirror of
https://github.com/hashicorp/vault.git
synced 2026-02-03 20:40:45 -05:00
None of these appear to have any changes in behavior we ought to be concerned with. - actions/cache: https://github.com/actions/cache/releases/tag/v5.0.1 Upgrade to Node 24 - actions/upload-artifact: https://github.com/actions/upload-artifact/releases/tag/v6.0.0 Upgrade to Node 24 - actions/checkout: https://github.com/actions/checkout/releases/tag/v6.0.1 Bug fix for persisted-credentials changes in 6 - actions/setup-node: https://github.com/actions/setup-node/releases/tag/v6.1.0 Updates internal actions and removes always-auth config - actions/download-artifact: https://github.com/actions/download-artifact/releases/tag/v7.0.0 Upgrade to Node 24 Signed-off-by: Ryan Cragun <me@ryan.ec> Co-authored-by: Ryan Cragun <me@ryan.ec>
26 lines
782 B
YAML
26 lines
782 B
YAML
name: Check Copywrite Headers
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened, ready_for_review]
|
|
push:
|
|
branches:
|
|
- main
|
|
- release/**
|
|
- ce/**
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
copywrite:
|
|
runs-on: ${{ github.repository == 'hashicorp/vault' && 'ubuntu-latest' || fromJSON('["self-hosted","ubuntu-latest-x64"]') }}
|
|
steps:
|
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
|
- uses: hashicorp/setup-copywrite@32638da2d4e81d56a0764aa1547882fc4d209636 # v1.1.3
|
|
name: Setup Copywrite
|
|
with:
|
|
version: v0.16.4
|
|
archive-checksum: c299f830e6eef7e126a3c6ef99ac6f43a3c132d830c769e0d36fa347fa1af254
|
|
- name: Check Header Compliance
|
|
run: make ci-copywriteheaders
|