Skip to content

Commit

Permalink
chore(bot): bump the dependencies group with 5 updates (#92)
Browse files Browse the repository at this point in the history
Bumps the dependencies group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [actions/checkout](https://github.com/actions/checkout) | `2` | `4` |
| [actions/github-script](https://github.com/actions/github-script) | `6` | `7` |
| [peter-evans/find-comment](https://github.com/peter-evans/find-comment) | `2` | `3` |
| [peter-evans/create-or-update-comment](https://github.com/peter-evans/create-or-update-comment) | `2` | `4` |
| [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) | `4` | `5` |


Updates `actions/checkout` from 2 to 4
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v2...v4)

Updates `actions/github-script` from 6 to 7
- [Release notes](https://github.com/actions/github-script/releases)
- [Commits](actions/github-script@v6...v7)

Updates `peter-evans/find-comment` from 2 to 3
- [Release notes](https://github.com/peter-evans/find-comment/releases)
- [Commits](peter-evans/find-comment@v2...v3)

Updates `peter-evans/create-or-update-comment` from 2 to 4
- [Release notes](https://github.com/peter-evans/create-or-update-comment/releases)
- [Commits](peter-evans/create-or-update-comment@v2...v4)

Updates `golangci/golangci-lint-action` from 4 to 5
- [Release notes](https://github.com/golangci/golangci-lint-action/releases)
- [Commits](golangci/golangci-lint-action@v4...v5)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: actions/github-script
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: peter-evans/find-comment
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: peter-evans/create-or-update-comment
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: golangci/golangci-lint-action
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored May 3, 2024
1 parent 7f0cc63 commit aed10ba
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/combine-prs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
steps:
- name: Create Combined PR
id: create-combined-pr
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
github-token: ${{ secrets.githubToken }}
script: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/comment-deploy-link.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

steps:
- name: Get deploy link(s)
uses: actions/github-script@v6
uses: actions/github-script@v7
id: set-result
env:
PR_TITLE: ${{ github.event.pull_request.title }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/go-lint-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
cache: false

- name: golangci-lint
uses: golangci/golangci-lint-action@v4
uses: golangci/golangci-lint-action@v5
id: golangci-lint
with:
version: ${{ inputs.golangci-lint-version }}
Expand All @@ -88,15 +88,15 @@ jobs:
- name: Find previous lint comment
if: ${{ !contains(github.ref, 'refs/heads/master') && !contains(github.ref, 'refs/heads/main') && (success() || failure()) }}
uses: peter-evans/find-comment@v2
uses: peter-evans/find-comment@v3
id: previous-lint-comment
with:
issue-number: ${{ github.event.number }}
body-includes: To run the linter locally

- name: Publish lint comment
if: ${{ !contains(github.ref, 'refs/heads/master') && !contains(github.ref, 'refs/heads/main') && (success() || failure()) }}
uses: peter-evans/create-or-update-comment@v2
uses: peter-evans/create-or-update-comment@v4
env:
ECR_REGISTRY: ${{ secrets.ECR_REGISTRY }}
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Update major version tag
run: |
git config --global user.email "security@typeform.com"
Expand Down

0 comments on commit aed10ba

Please sign in to comment.