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
3 changes: 3 additions & 0 deletions .github/workflows/cron-check-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ jobs:
run: task docker:cmds

- name: Build and push test image
env:
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: task docker:push

- name: Inspect image
Expand Down
26 changes: 1 addition & 25 deletions .github/workflows/manual-update-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,11 @@ on:
permissions:
contents: write
pull-requests: write
packages: write

jobs:
update:
name: Update version and push release branch
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
steps:
- name: Checkout
uses: actions/checkout@v5
Expand Down Expand Up @@ -70,29 +69,6 @@ jobs:
esac
echo "REL_VERSION=$(task version:get)" >> "$GITHUB_OUTPUT"
- name: Install Docker Buildx
uses: docker/setup-buildx-action@v3
with:
install: true

- name: Install QEMU
uses: docker/setup-qemu-action@v3
with:
image: tonistiigi/binfmt:latest
platforms: amd64,arm64

- name: Get Docker commands
run: task docker:cmds

- name: Build and push test image
env:
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: task docker:push

- name: Inspect image
run: task docker:push:inspect

- name: Get template
env:
VERSION_SUFFIX: ""
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@
.venv/
.envrc
.env
.tmp
16 changes: 8 additions & 8 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,23 +24,23 @@ repos:
- id: trailing-whitespace
- repo: local
hooks:
- id: action
name: action
- id: actionlint
name: actionlint
entry: bash -lc 'docker run --rm -v "$PWD:/work" -w /work rhysd/actionlint:latest -color'
language: system
pass_filenames: false
- id: docker
name: docker
- id: hadolint
name: hadolint
entry: bash -lc 'docker run --rm -v "$PWD:/work" -w /work hadolint/hadolint:latest-debian hadolint Dockerfile'
language: system
pass_filenames: false
- id: shell
name: shell
- id: shellcheck
name: shellcheck
entry: bash -lc 'docker run --rm -v "$PWD:/work" -w /work koalaman/shellcheck:stable -x -S style entrypoint.sh'
language: system
pass_filenames: false
- id: yaml
name: yaml
- id: yamllint
name: yamllint
entry: bash -lc 'docker run --rm -v "$PWD:/work" -w /work cytopia/yamllint -c .yamllint.yml .'
language: system
pass_filenames: false
Loading