Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump iStreamPlanet/github-actions from 1.15.0 to 1.18.0 #429

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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