I hereby claim:
- I am wesley-dean on github.
- I am wesdean (https://keybase.io/wesdean) on keybase.
- I have a public key ASB8pG40OWH6HhRYutNn2unHE-4fBaKDbdW2kD7PU7vRNAo
To claim this, I am signing this object:
| --- | |
| name: Update Golang packages for global installation | |
| # yamllint disable-line rule:truthy | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "0 0 * * 0" # Every Sunday at 00:00 UTC | |
| permissions: | |
| contents: read |
| { | |
| "extends": "recommended", | |
| "rules": { | |
| "convention.CompileStatic": "off", | |
| "convention.NoDef": "off", | |
| "convention.VariableTypeRequired": "off", | |
| "convention.MethodReturnTypeRequired": "off", | |
| "groovyism.ExplicitCallToEqualsMethod": "off", | |
| "groovyism.GStringExpressionWithinString": "off", | |
| "naming.VariableName": "off", |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env -S sed -Ef | |
| # Replace 12-digit strings (AWS Account IDs) | |
| # 123456789012 => 123********* | |
| s/([^0-9])([0-9]{3})[0-9]{9}([^0-9])/\1\2*********\3/g | |
| # Replace Social Security Numbers (SSNs) with dashes => | |
| # 123-45-6789 => 123-**-**** | |
| s/([^0-9])([0-9]{3})-([0-9]{2})-([0-9]{4})([^0-9])/\1\2-**-****\5/g |
| #!/bin/sh | |
| # Terraform's External provider: | |
| # https://www.terraform.io/docs/providers/external/data_source.html | |
| # | |
| # Sample usage (Terraform): | |
| # data "external" "nextmonth" { | |
| # program = ["sh", "${path.module}date_from_now_terraform.sh"] | |
| # | |
| # query = { |