Unverified Commit ac98dce6 authored by github-actions[bot]'s avatar github-actions[bot] Committed by GitHub
Browse files

Upgrade pre-commit-config (#75)

parent 5db9b1fe
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -14,4 +14,4 @@ jobs:
      - name: Auto Pull Request
        uses: diillson/auto-pull-request@v1.0.1
        with:
          destination_branch: "main"
          destination_branch: main
+3 −3
Original line number Diff line number Diff line
@@ -8,9 +8,9 @@ name: Docker Image CI Linux ghcr.io
on:
  push:
    tags:
      - "v*.*.*"
      - v*.*.*
    branches:
      - "main"
      - main

env:
  # Use docker.io for Docker Hub if empty
@@ -39,7 +39,7 @@ jobs:
        if: github.event_name != 'pull_request'
        uses: sigstore/cosign-installer@6e04d228eb30da1757ee4e1dd75a0ec73a653e06 #v3.1.1
        with:
          cosign-release: 'v2.1.1'
          cosign-release: v2.1.1

      # Set up BuildKit Docker container builder to be able to build
      # multi-platform images and export cache
+7 −12
Original line number Diff line number Diff line
@@ -3,28 +3,24 @@ name: Docker Image CI Linux docker.io
on:
  push:
    tags:
      - "v*.*.*"
      - v*.*.*
    branches:
      - "main"
      - main

jobs:
  docker:
    runs-on: ubuntu-latest
    steps:
      -
        name: Set up QEMU
      - name: Set up QEMU
        uses: docker/setup-qemu-action@v3
      -
        name: Set up Docker Buildx
      - name: Set up Docker Buildx
        uses: docker/setup-buildx-action@v3
      -
        name: Login to Docker Hub
      - name: Login to Docker Hub
        uses: docker/login-action@v3
        with:
          username: ${{ secrets.DOCKERHUB_USERNAME }}
          password: ${{ secrets.DOCKERHUB_TOKEN }}
      -
        name: Build and push
      - name: Build and push
        uses: docker/build-push-action@v5
        with:
          file: ./Dockerfile-py3-linux-slim
@@ -41,8 +37,7 @@ jobs:
            ${{ secrets.DOCKERHUB_USERNAME }}/pyinstaller-linux:${{ github.ref_name }}-slim
            ${{ secrets.DOCKERHUB_USERNAME }}/pyinstaller-linux:latest-slim

      -
        name: Build and push
      - name: Build and push
        uses: docker/build-push-action@v5
        with:
          file: ./Dockerfile-py3-linux
+3 −3
Original line number Diff line number Diff line
@@ -8,9 +8,9 @@ name: Docker Image CI OSX ghcr.io
on:
  push:
    tags:
      - "v*.*.*"
      - v*.*.*
    branches:
      - "main"
      - main

env:
  # Use docker.io for Docker Hub if empty
@@ -39,7 +39,7 @@ jobs:
        if: github.event_name != 'pull_request'
        uses: sigstore/cosign-installer@6e04d228eb30da1757ee4e1dd75a0ec73a653e06 #v3.1.1
        with:
          cosign-release: 'v2.1.1'
          cosign-release: v2.1.1

      # Set up BuildKit Docker container builder to be able to build
      # multi-platform images and export cache
+6 −10
Original line number Diff line number Diff line
@@ -3,28 +3,24 @@ name: Docker Image CI OSX docker.io
on:
  push:
    tags:
      - "v*.*.*"
      - v*.*.*
    branches:
      - "main"
      - main

jobs:
  docker:
    runs-on: ubuntu-latest
    steps:
      -
        name: Set up QEMU
      - name: Set up QEMU
        uses: docker/setup-qemu-action@v3
      -
        name: Set up Docker Buildx
      - name: Set up Docker Buildx
        uses: docker/setup-buildx-action@v3
      -
        name: Login to Docker Hub
      - name: Login to Docker Hub
        uses: docker/login-action@v3
        with:
          username: ${{ secrets.DOCKERHUB_USERNAME }}
          password: ${{ secrets.DOCKERHUB_TOKEN }}
      -
        name: Build and push
      - name: Build and push
        uses: docker/build-push-action@v5
        with:
          file: ./Dockerfile-py3-osx
Loading