Skip to content

Commit

Permalink
Bump the github-actions group with 6 updates
Browse files Browse the repository at this point in the history
Bumps the github-actions group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [github/branch-deploy](https://github.com/github/branch-deploy) | `8.0.0` | `8.2.0` |
| [azure/login](https://github.com/azure/login) | `1.4.4` | `1.5.1` |
| [hashicorp/setup-terraform](https://github.com/hashicorp/setup-terraform) | `1.4.0` | `3.0.0` |
| [actions/github-script](https://github.com/actions/github-script) | `0.9.0` | `7.0.1` |
| [appleboy/ssh-action](https://github.com/appleboy/ssh-action) | `0.1.6` | `1.0.1` |
| [GrantBirki/comment](https://github.com/grantbirki/comment) | `2.0.7` | `2.0.8` |


Updates `github/branch-deploy` from 8.0.0 to 8.2.0
- [Release notes](https://github.com/github/branch-deploy/releases)
- [Commits](github/branch-deploy@v8.0.0...v8.2.0)

Updates `azure/login` from 1.4.4 to 1.5.1
- [Release notes](https://github.com/azure/login/releases)
- [Commits](Azure/login@ec3c145...de95379)

Updates `hashicorp/setup-terraform` from 1.4.0 to 3.0.0
- [Release notes](https://github.com/hashicorp/setup-terraform/releases)
- [Changelog](https://github.com/hashicorp/setup-terraform/blob/main/CHANGELOG.md)
- [Commits](hashicorp/setup-terraform@ed3a053...a1502cd)

Updates `actions/github-script` from 0.9.0 to 7.0.1
- [Release notes](https://github.com/actions/github-script/releases)
- [Commits](actions/github-script@5d03ada...60a0d83)

Updates `appleboy/ssh-action` from 0.1.6 to 1.0.1
- [Release notes](https://github.com/appleboy/ssh-action/releases)
- [Commits](appleboy/ssh-action@4a03da8...8f94919)

Updates `GrantBirki/comment` from 2.0.7 to 2.0.8
- [Release notes](https://github.com/grantbirki/comment/releases)
- [Commits](GrantBirki/comment@v2.0.7...v2.0.8)

---
updated-dependencies:
- dependency-name: github/branch-deploy
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions
- dependency-name: azure/login
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions
- dependency-name: hashicorp/setup-terraform
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: actions/github-script
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: appleboy/ssh-action
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: GrantBirki/comment
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github-actions
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Dec 30, 2023
1 parent 645efa5 commit 915827b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/branch-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: github/branch-deploy@v8.0.0
- uses: github/branch-deploy@v8.2.0
id: branch-deploy
with:
admins: the-hideout/core-contributors
Expand All @@ -33,12 +33,12 @@ jobs:
with:
ref: ${{ steps.branch-deploy.outputs.ref }}

- uses: azure/login@ec3c14589bd3e9312b3cc8c41e6860e258df9010 # pin@v1
- uses: azure/login@de95379fe4dadc2defb305917eaa7e5dde727294 # pin@v1
if: ${{ steps.branch-deploy.outputs.continue == 'true' }}
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}

- uses: hashicorp/setup-terraform@ed3a0531877aca392eb870f440d9ae7aba83a6bd # pin@v1
- uses: hashicorp/setup-terraform@a1502cd9e758c50496cc9ac5308c4843bcd56d36 # pin@v1
if: ${{ steps.branch-deploy.outputs.continue == 'true' }}
with:
terraform_version: 1.1.7
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
continue-on-error: true

# Post comment on PR with development plan info
- uses: actions/github-script@5d03ada4b0a753e9460b312e61cc4f8fdeacf163 # pin@0.9.0
- uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # pin@7.0.1
if: ${{ steps.branch-deploy.outputs.continue == 'true' && steps.branch-deploy.outputs.noop == 'true' }}
env:
PLAN: "terraform ${{ steps.plan.outputs.stdout }}"
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:

- name: SSH Remote Deploy
if: ${{ steps.branch-deploy.outputs.continue == 'true' && steps.branch-deploy.outputs.noop != 'true' }}
uses: appleboy/ssh-action@4a03da89e5c43da56e502053be4bbcb293411883 # pin@v0.1.6
uses: appleboy/ssh-action@8f949198563a347a01c65ffc60399aef2b59d4ab # pin@v1.0.1
with:
host: ${{ secrets.SSH_HOST }}
username: ${{ secrets.SSH_USERNAME }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: azure/login@ec3c14589bd3e9312b3cc8c41e6860e258df9010 # pin@v1
- uses: azure/login@de95379fe4dadc2defb305917eaa7e5dde727294 # pin@v1
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}

- uses: hashicorp/setup-terraform@ed3a0531877aca392eb870f440d9ae7aba83a6bd # pin@v1
- uses: hashicorp/setup-terraform@a1502cd9e758c50496cc9ac5308c4843bcd56d36 # pin@v1
with:
terraform_version: 1.1.7
cli_config_credentials_token: ${{ secrets.TF_API_TOKEN }}
Expand All @@ -37,7 +37,7 @@ jobs:
run: terraform apply -auto-approve

- name: SSH Remote Deploy
uses: appleboy/ssh-action@4a03da89e5c43da56e502053be4bbcb293411883 # pin@v0.1.6
uses: appleboy/ssh-action@8f949198563a347a01c65ffc60399aef2b59d4ab # pin@v1.0.1
with:
host: ${{ secrets.SSH_HOST }}
username: ${{ secrets.SSH_USERNAME }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/new-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
# Comment on new PR requests with deployment instructions
- uses: actions/checkout@v4
- name: comment
uses: GrantBirki/[email protected].7
uses: GrantBirki/[email protected].8
continue-on-error: true
with:
file: .github/new-pr-comment.md
2 changes: 1 addition & 1 deletion .github/workflows/unlock-on-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- name: unlock on merge
uses: github/branch-deploy@v8.0.0
uses: github/branch-deploy@v8.2.0
id: unlock-on-merge
with:
unlock_on_merge_mode: "true" # <-- indicates that this is the "Unlock on Merge Mode" workflow
Expand Down

0 comments on commit 915827b

Please sign in to comment.