From c5cb516b32920e934b459952b671de2da5e04379 Mon Sep 17 00:00:00 2001 From: Norio Nomura Date: Fri, 13 Nov 2020 08:56:07 +0900 Subject: [PATCH] Bump version to 3.2.0 --- Dockerfile | 2 +- README.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index be2ce91..9ed5651 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM norionomura/swiftlint:swift-5 -LABEL version="3.1.0" +LABEL version="3.2.0" LABEL repository="https://github.com/norio-nomura/action-swiftlint" LABEL homepage="https://github.com/norio-nomura/action-swiftlint" LABEL maintainer="Norio Nomura " diff --git a/README.md b/README.md index d221895..175e02e 100644 --- a/README.md +++ b/README.md @@ -22,17 +22,17 @@ jobs: steps: - uses: actions/checkout@v1 - name: GitHub Action for SwiftLint - uses: norio-nomura/action-swiftlint@3.1.0 + uses: norio-nomura/action-swiftlint@3.2.0 - name: GitHub Action for SwiftLint with --strict - uses: norio-nomura/action-swiftlint@3.1.0 + uses: norio-nomura/action-swiftlint@3.2.0 with: args: --strict - name: GitHub Action for SwiftLint (Only files changed in the PR) - uses: norio-nomura/action-swiftlint@3.1.0 + uses: norio-nomura/action-swiftlint@3.2.0 env: DIFF_BASE: ${{ github.base_ref }} - name: GitHub Action for SwiftLint (Different working directory) - uses: norio-nomura/action-swiftlint@3.1.0 + uses: norio-nomura/action-swiftlint@3.2.0 env: WORKING_DIRECTORY: Source ```