Skip to content

Commit

Permalink
chore(deps): bump iStreamPlanet/github-actions from 1.14.0 to 1.15.0 (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Aug 8, 2022
1 parent 0ce69ed commit 4966efe
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/terraform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
if: github.event_name == 'pull_request'
steps:
- name: Minimize previous comments
uses: iStreamPlanet/github-actions/minimize-comments@v1.14.0
uses: iStreamPlanet/github-actions/minimize-comments@v1.15.0
with:
github-token: ${{secrets.GITHUB_TOKEN}}
by-author: github-actions
Expand All @@ -51,7 +51,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- id: build-workspace-matrix
uses: iStreamPlanet/github-actions/build-workspace-matrix@v1.14.0
uses: iStreamPlanet/github-actions/build-workspace-matrix@v1.15.0
with:
github-token: ${{secrets.GITHUB_TOKEN}}
workspaces: ${{ inputs.workspaces }}
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
asdf plugin-add sops
asdf install
- name: "terraform fmt"
uses: iStreamPlanet/github-actions/terraform-actions@v1.14.0
uses: iStreamPlanet/github-actions/terraform-actions@v1.15.0
if: github.event_name == 'pull_request'
with:
command: fmt
Expand All @@ -100,35 +100,35 @@ jobs:
with:
ssh-private-key: ${{ secrets.ssh_private_key }}
- name: "terraform init"
uses: iStreamPlanet/github-actions/terraform-actions@v1.14.0
uses: iStreamPlanet/github-actions/terraform-actions@v1.15.0
env:
GIT_SSH_COMMAND: "ssh -o StrictHostKeyChecking=no -i $HOME/.ssh/id_rsa"
with:
command: init
working_directory: ${{ env.WORKSPACE }}
- name: "terraform validate"
uses: iStreamPlanet/github-actions/terraform-actions@v1.14.0
uses: iStreamPlanet/github-actions/terraform-actions@v1.15.0
with:
command: validate
working_directory: ${{ env.WORKSPACE }}

- name: "terraform plan"
id: terraform-plan
uses: iStreamPlanet/github-actions/terraform-actions@v1.14.0
uses: iStreamPlanet/github-actions/terraform-actions@v1.15.0
if: github.event_name == 'pull_request' || github.event_name == 'schedule'
with:
command: plan
working_directory: ${{ env.WORKSPACE }}

- name: "terraform apply"
uses: iStreamPlanet/github-actions/terraform-actions@v1.14.0
uses: iStreamPlanet/github-actions/terraform-actions@v1.15.0
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
with:
command: apply
working_directory: ${{ env.WORKSPACE }}

- name: Update drift issue
uses: iStreamPlanet/github-actions/update-issue@v1.14.0
uses: iStreamPlanet/github-actions/update-issue@v1.15.0
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' || github.event_name == 'schedule'
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -152,7 +152,7 @@ jobs:
# NOTE: this step should always be last in the job
- name: Update execution failure issue
uses: iStreamPlanet/github-actions/update-issue@v1.14.0
uses: iStreamPlanet/github-actions/update-issue@v1.15.0
# Run regardless of job completion status, except for PRs, where the workflow result is communicated via a Check status
if: always() && github.event_name != 'pull_request'
with:
Expand Down

0 comments on commit 4966efe

Please sign in to comment.