diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 34c2992..58cf8fd 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,4 +1,4 @@ -name: 'Patcher Tests' +name: "Patcher Tests" on: push: @@ -11,7 +11,7 @@ jobs: outputs: dependencies: ${{ steps.run-report.outputs.dependencies }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Patcher id: run-report uses: ./ @@ -19,7 +19,6 @@ jobs: patcher_command: report working_dir: infrastructure-live - patcher-update: needs: [patcher-report] runs-on: ubuntu-latest @@ -27,7 +26,7 @@ jobs: matrix: dependency: ${{ fromJson(needs.patcher-report.outputs.dependencies) }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Patcher uses: ./ with: diff --git a/dist/index.js b/dist/index.js index 8f63eb2..13220c7 100644 --- a/dist/index.js +++ b/dist/index.js @@ -13536,7 +13536,7 @@ const exec = __importStar(__nccwpck_require__(1514)); // Define constants const GRUNTWORK_GITHUB_ORG = "gruntwork-io"; const PATCHER_GITHUB_REPO = "patcher-cli"; -const PATCHER_VERSION = "v0.8.1"; +const PATCHER_VERSION = "v0.8.2"; const TERRAPATCH_GITHUB_REPO = "terrapatch-cli"; const TERRAPATCH_VERSION = "v0.1.3"; const HCLEDIT_ORG = "minamijoyo"; diff --git a/package.json b/package.json index 01e1546..ed8ae0f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "patcher-action", - "version": "0.0.4", + "version": "0.0.5", "description": "Run Patcher by Gruntwork.io", "main": "index.js", "repository": "git@github.com:gruntwork-io/patcher-action.git", diff --git a/src/action.ts b/src/action.ts index 193beea..f3279ea 100644 --- a/src/action.ts +++ b/src/action.ts @@ -12,7 +12,7 @@ import { Api as GitHub } from "@octokit/plugin-rest-endpoint-methods/dist-types/ const GRUNTWORK_GITHUB_ORG = "gruntwork-io"; const PATCHER_GITHUB_REPO = "patcher-cli"; -const PATCHER_VERSION = "v0.8.1"; +const PATCHER_VERSION = "v0.8.2"; const TERRAPATCH_GITHUB_REPO = "terrapatch-cli"; const TERRAPATCH_VERSION = "v0.1.3";