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 the github-actions group across 1 directory with 2 updates #6

Closed
Closed
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
chore(deps): bump the github-actions group across 1 directory with 2 …
…updates

Bumps the github-actions group with 2 updates in the / directory: [labd/changie-release-action](https://github.com/labd/changie-release-action) and [actions/add-to-project](https://github.com/actions/add-to-project).


Updates `labd/changie-release-action` from 0.3.2 to 0.4.0
- [Release notes](https://github.com/labd/changie-release-action/releases)
- [Changelog](https://github.com/labd/changie-release-action/blob/main/CHANGELOG.md)
- [Commits](labd/changie-release-action@v0.3.2...v0.4.0)

Updates `actions/add-to-project` from 1.0.1 to 1.0.2
- [Release notes](https://github.com/actions/add-to-project/releases)
- [Commits](actions/add-to-project@v1.0.1...v1.0.2)

---
updated-dependencies:
- dependency-name: labd/changie-release-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions
- dependency-name: actions/add-to-project
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github-actions
...

Signed-off-by: dependabot[bot] <support@github.com>
dependabot[bot] authored Aug 2, 2024
commit 06021de199fce6ffc73b3a1b4c2aca8fb2c0330d
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -42,7 +42,7 @@ jobs:
fetch-depth: 0

- name: Prepare release
uses: labd/changie-release-action@v0.3.2
uses: labd/changie-release-action@v0.4.0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

2 changes: 1 addition & 1 deletion .github/workflows/triage.yaml
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ jobs:
private-key: ${{ secrets.RD_APP_PRIVATE_KEY }}
installation-id: ${{ secrets.RD_APP_INSTALLATION_ID }}
- name: set to project board
uses: actions/add-to-project@v0.5.0
uses: actions/add-to-project@v1.0.2
with:
project-url: https://github.com/orgs/labd/projects/3
github-token: ${{ steps.get-app-token.outputs.app-token }}

Unchanged files with check annotations Beta

"encoding/json"
"fmt"
"io"
"io/ioutil"

Check failure on line 8 in management/client.go

GitHub Actions / test

SA1019: "io/ioutil" has been deprecated since Go 1.19: As of Go 1.16, the same functionality is now provided by package io or package os, and those implementations should be preferred in new code. See the specific function documentation for details. (staticcheck)
"net/http"
"net/url"
)
return &Client{}
}
func (c *Client) head(ctx context.Context, path string, queryParams url.Values, headers http.Header) (*http.Response, error) {

Check failure on line 76 in management/client.go

GitHub Actions / test

func `(*Client).head` is unused (unused)
return c.execute(ctx, http.MethodHead, path, queryParams, headers, nil)
}
}
func (c *Client) processResponse(r *http.Response, dst interface{}) error {
content, err := ioutil.ReadAll(r.Body)

Check failure on line 134 in management/client.go

GitHub Actions / test

ineffectual assignment to err (ineffassign)
defer r.Body.Close()
switch r.StatusCode {