Skip to content

Commit

Permalink
chore(deps): bump Github actions (#1438)
Browse files Browse the repository at this point in the history
* chore(deps): bump actions/setup-go from 3 to 4

Bumps [actions/setup-go](https://github.com/actions/setup-go) from 3 to 4.
- [Release notes](https://github.com/actions/setup-go/releases)
- [Commits](actions/setup-go@v3...v4)

---
updated-dependencies:
- dependency-name: actions/setup-go
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* chore(deps): bump actions/github-script from 0.9.0 to 6.4.1

Bumps [actions/github-script](https://github.com/actions/github-script) from 0.9.0 to 6.4.1.
- [Release notes](https://github.com/actions/github-script/releases)
- [Commits](actions/github-script@0.9.0...v6.4.1)

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

Signed-off-by: dependabot[bot] <support@github.com>

* chore(deps): bump test-summary/action from 2.0 to 2.1

Bumps [test-summary/action](https://github.com/test-summary/action) from 2.0 to 2.1.
- [Release notes](https://github.com/test-summary/action/releases)
- [Commits](test-summary/action@4ee9ece...62bc5c6)

---
updated-dependencies:
- dependency-name: test-summary/action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
mdelapenya and dependabot[bot] committed Aug 4, 2023
1 parent 17ff399 commit 769dfe6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-test-go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
run: sudo rm -rf /var/run/docker.sock

- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v4
with:
go-version: ${{ inputs.go-version }}
id: go
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
./scripts/check_environment.sh
- name: Test Summary
uses: test-summary/action@4ee9ece4bca777a38f05c8fc578ac2007fe266f7
uses: test-summary/action@62bc5c68de2a6a0d02039763b8c754569df99e3f
with:
paths: "**/${{ inputs.project-directory }}/TEST-unit*.xml"
if: always()
8 changes: 4 additions & 4 deletions .github/workflows/ci-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
fail-fast: false
steps:
- name: Create pending status
uses: actions/github-script@0.9.0
uses: actions/github-script@v6.4.1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand All @@ -38,7 +38,7 @@ jobs:
ref: ${{ github.event.client_payload.pull_request.head.ref }}

- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v4
with:
go-version: 1.x
id: go
Expand All @@ -58,7 +58,7 @@ jobs:
gotestsum --format short-verbose --rerun-fails=5 --packages="./..." --junitfile TEST-unit.xml
- name: Create success status
uses: actions/github-script@0.9.0
uses: actions/github-script@v6.4.1
if: success()
with:
github-token: ${{secrets.GITHUB_TOKEN}}
Expand All @@ -73,7 +73,7 @@ jobs:
})
- name: Create failure status
uses: actions/github-script@0.9.0
uses: actions/github-script@v6.4.1
if: failure()
with:
github-token: ${{secrets.GITHUB_TOKEN}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
static-analysis:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v3
- uses: actions/setup-go@v4
with:
go-version: 1.19
- uses: actions/checkout@v3
Expand Down

0 comments on commit 769dfe6

Please sign in to comment.