Skip to content

chore(deps): update dependency aws/aws-cli to v2.34.20 #6536

chore(deps): update dependency aws/aws-cli to v2.34.20

chore(deps): update dependency aws/aws-cli to v2.34.20 #6536

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
env:
IMAGE: ghcr.io/${{ github.repository_owner }}/dotfiles
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.CR_PAT }}
- uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4
- uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7
with:
context: .
push: true
tags: ${{ env.IMAGE }}:${{ github.sha }}
- uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7
with:
context: .
push: true
tags: ${{ env.IMAGE }}:laetst
if: github.ref == 'refs/heads/main'
format:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- name: lua
cmd: |
stylua --check -g '*.lua' -- config/{.config,.hammerspoon}
- name: sh
cmd: |
shfmt -i 2 -d bin config/{.bin,.config/zsh} install
name: format-${{ matrix.name }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: aquaproj/aqua-installer@11dd79b4e498d471a9385aa9fb7f62bb5f52a73c # v4.0.4
with:
aqua_version: v2.57.1
- run: ${{ matrix.cmd }}
update-aqua-checksums:
uses: ./.github/workflows/_update-aqua-checksum.yml
permissions:
contents: read
secrets:
gh-app-id: ${{secrets.UPDATE_AQUA_CHECKSUM_APP_ID}}
gh-app-private-key: ${{secrets.UPDATE_AQUA_CHECKSUM_APP_PRIVATE_KEY}}
if: github.event_name == 'pull_request'
status-check:
runs-on: ubuntu-latest
needs:
- build
- format
- update-aqua-checksums
permissions: {}
if: failure()
steps:
- run: exit 1