Skip to content

Commit

Permalink
chore(deps): bump iStreamPlanet/github-actions from 1.15.0 to 1.18.0 (#…
Browse files Browse the repository at this point in the history
…429)

Bumps [iStreamPlanet/github-actions](https://github.com/istreamplanet/github-actions) from 1.15.0 to 1.18.0.
- [Release notes](https://github.com/istreamplanet/github-actions/releases)
- [Changelog](https://github.com/iStreamPlanet/github-actions/blob/main/.releaserc)
- [Commits](v1.15.0...v1.18.0)

---
updated-dependencies:
- dependency-name: iStreamPlanet/github-actions
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Jul 1, 2024
1 parent 2ff4fe7 commit adb057f
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.15.0
uses: iStreamPlanet/github-actions/minimize-comments@v1.18.0
with:
github-token: ${{secrets.GITHUB_TOKEN}}
by-author: github-actions
Expand All @@ -51,7 +51,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- id: build-workspace-matrix
uses: iStreamPlanet/github-actions/build-workspace-matrix@v1.15.0
uses: iStreamPlanet/github-actions/build-workspace-matrix@v1.18.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.15.0
uses: iStreamPlanet/github-actions/terraform-actions@v1.18.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.15.0
uses: iStreamPlanet/github-actions/terraform-actions@v1.18.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.15.0
uses: iStreamPlanet/github-actions/terraform-actions@v1.18.0
with:
command: validate
working_directory: ${{ env.WORKSPACE }}

- name: "terraform plan"
id: terraform-plan
uses: iStreamPlanet/github-actions/terraform-actions@v1.15.0
uses: iStreamPlanet/github-actions/terraform-actions@v1.18.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.15.0
uses: iStreamPlanet/github-actions/terraform-actions@v1.18.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.15.0
uses: iStreamPlanet/github-actions/update-issue@v1.18.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.15.0
uses: iStreamPlanet/github-actions/update-issue@v1.18.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 adb057f

Please sign in to comment.