Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,10 @@ updates:
directory: "/"
schedule:
interval: "weekly"
groups:
github-actions:
patterns:
- "*"
cooldown:
default-days: 7

4 changes: 3 additions & 1 deletion .github/workflows/ansible-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: Ansible Lint # feel free to pick your own name

on: [push, pull_request]

permissions: read-all

jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -10,7 +12,7 @@ jobs:

steps:
# Important: This sets up your GITHUB_WORKSPACE environment variable
- uses: actions/checkout@v6
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
persist-credentials: false

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: Docker build and push to quay

# Runs on both PR and push gh actions, but only pushes the image when it is a gh push action
permissions: read-all
permissions: read-all # zizmor: ignore[excessive-permissions]

on:
push:
Expand Down Expand Up @@ -33,12 +33,12 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
persist-credentials: false

- name: Set up QEMU
uses: docker/setup-qemu-action@v4
uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a # v4

# Install the cosign tool except on PR
# https://github.com/sigstore/cosign-installer
Expand All @@ -65,7 +65,7 @@ jobs:
password: ${{ secrets.QUAY_PASSWORD }}

- name: Debug
uses: hmarr/debug-action@v3
uses: hmarr/debug-action@cd1afbd7852b7ad7b1b7a9a1b03efebd3b0a1820 # v3

- name: Test bandini
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/homepage-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ on:
- '.github/workflows/homepage-container.yml'
workflow_call:

permissions: read-all
permissions: read-all # zizmor: ignore[excessive-permissions]

jobs:
podman-build:
name: Homepage Container Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
persist-credentials: false

Expand Down
12 changes: 10 additions & 2 deletions .github/workflows/superlinter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name: Super linter

on: [push, pull_request]

permissions: read-all

jobs:
build:
# Name the Job
Expand All @@ -12,7 +14,7 @@ jobs:

steps:
- name: Checkout Code
uses: actions/checkout@v6
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0
Expand All @@ -22,7 +24,7 @@ jobs:
# Run Linter against code base #
################################
- name: Lint Code Base
uses: super-linter/super-linter/slim@v8
uses: super-linter/super-linter/slim@61abc07d755095a68f4987d1c2c3d1d64408f1f9 # v8.5.0
env:
VALIDATE_ALL_CODEBASE: true
DEFAULT_BRANCH: main
Expand All @@ -46,3 +48,9 @@ jobs:
VALIDATE_TRIVY: false
VALIDATE_YAML: false
VALIDATE_YAML_PRETTIER: false
VALIDATE_BIOME_FORMAT: false
VALIDATE_BIOME_LINT: false
VALIDATE_SPELL_CODESPELL: false
VALIDATE_JSON_PRETTIER: false
VALIDATE_PYTHON_PYINK: false
VALIDATE_PYTHON_RUFF_FORMAT: false
3 changes: 2 additions & 1 deletion aws-tools/lambda/stopinstances.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@

# Dictionary that holds the key/value pair for each region
# key = key e.g. 'us-west-1'
# value = array e.g. ['i-003cf2aedc58219bf', 'i-0852da9f9b599e873', 'i-06b7b658e21e5e726', 'i-00fa6d35fea24c33b', 'i-0f5746bb760cab75b', 'i-021ec39d1d4bf6c7e']
# value = array e.g. ['i-003cf2aedc58219bf', 'i-0852da9f9b599e873',
# 'i-06b7b658e21e5e726', 'i-00fa6d35fea24c33b']
allInstances = {}

# Array of instances that are running for a region and we want to stop
Expand Down
Loading