-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into dependabot/go_modules…
…/github.com/elastic/go-ucfg-0.8.7
- Loading branch information
Showing
6 changed files
with
70 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Follow-on actions relating to dependabot PRs. In elastic/fleet-server, any changes to | ||
# dependencies contained in go.mod requires the change to be reflected in the | ||
# NOTICE.txt file. When dependabot creates a branch for a go_modules change this | ||
# will update the NOTICE.txt file for that change. | ||
name: post-dependabot | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'dependabot/go_modules/**' | ||
|
||
jobs: | ||
update-notice: | ||
permissions: | ||
# Allow job to write to the branch. | ||
contents: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: actions/setup-go@v4 | ||
with: | ||
go-version-file: .go-version | ||
|
||
- name: update NOTICE.txt | ||
run: make notice | ||
|
||
- name: run go mod tidy in testing/ | ||
run: cd testing; go mod tidy | ||
|
||
- name: check for modified files | ||
id: check-files | ||
run: echo "modified=$(if git diff-index --quiet HEAD -- NOTICE.txt testing/go.mod testing/go.sum; then echo "false"; else echo "true"; fi)" >> $GITHUB_OUTPUT | ||
|
||
- name: commit modified files | ||
if: steps.check-files.outputs.modified == 'true' | ||
run: | | ||
git config --global user.name 'dependabot[bot]' | ||
git config --global user.email 'dependabot[bot]@users.noreply.github.com' | ||
git add NOTICE.txt testing/go.mod testing/go.sum | ||
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }} | ||
git commit -m "Post dependabot file modifications" | ||
git push |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -460,11 +460,11 @@ SOFTWARE | |
|
||
-------------------------------------------------------------------------------- | ||
Dependency : github.com/elastic/elastic-agent-libs | ||
Version: v0.7.4 | ||
Version: v0.7.5 | ||
Licence type (autodetected): Apache-2.0 | ||
-------------------------------------------------------------------------------- | ||
|
||
Contents of probable licence file $GOMODCACHE/github.com/elastic/[email protected].4/LICENSE: | ||
Contents of probable licence file $GOMODCACHE/github.com/elastic/[email protected].5/LICENSE: | ||
|
||
Apache License | ||
Version 2.0, January 2004 | ||
|
@@ -671,11 +671,11 @@ Contents of probable licence file $GOMODCACHE/github.com/elastic/elastic-agent-l | |
|
||
-------------------------------------------------------------------------------- | ||
Dependency : github.com/elastic/elastic-agent-system-metrics | ||
Version: v0.7.0 | ||
Version: v0.9.2 | ||
Licence type (autodetected): Apache-2.0 | ||
-------------------------------------------------------------------------------- | ||
|
||
Contents of probable licence file $GOMODCACHE/github.com/elastic/elastic-agent-system-metrics@v0.7.0/LICENSE.txt: | ||
Contents of probable licence file $GOMODCACHE/github.com/elastic/elastic-agent-system-metrics@v0.9.2/LICENSE.txt: | ||
|
||
Apache License | ||
Version 2.0, January 2004 | ||
|
@@ -882,11 +882,11 @@ Contents of probable licence file $GOMODCACHE/github.com/elastic/elastic-agent-s | |
|
||
-------------------------------------------------------------------------------- | ||
Dependency : github.com/elastic/go-elasticsearch/v8 | ||
Version: v8.10.1 | ||
Version: v8.12.1 | ||
Licence type (autodetected): Apache-2.0 | ||
-------------------------------------------------------------------------------- | ||
|
||
Contents of probable licence file $GOMODCACHE/github.com/elastic/go-elasticsearch/v8@v8.10.1/LICENSE: | ||
Contents of probable licence file $GOMODCACHE/github.com/elastic/go-elasticsearch/v8@v8.12.1/LICENSE: | ||
|
||
Apache License | ||
Version 2.0, January 2004 | ||
|
@@ -8161,11 +8161,11 @@ Apache License | |
|
||
-------------------------------------------------------------------------------- | ||
Dependency : github.com/docker/docker | ||
Version: v23.0.3+incompatible | ||
Version: v24.0.7+incompatible | ||
Licence type (autodetected): Apache-2.0 | ||
-------------------------------------------------------------------------------- | ||
|
||
Contents of probable licence file $GOMODCACHE/github.com/docker/docker@v23.0.3+incompatible/LICENSE: | ||
Contents of probable licence file $GOMODCACHE/github.com/docker/docker@v24.0.7+incompatible/LICENSE: | ||
|
||
|
||
Apache License | ||
|
@@ -9429,11 +9429,11 @@ Contents of probable licence file $GOMODCACHE/github.com/elastic/go-structform@v | |
|
||
-------------------------------------------------------------------------------- | ||
Dependency : github.com/elastic/go-sysinfo | ||
Version: v1.11.1 | ||
Version: v1.13.1 | ||
Licence type (autodetected): Apache-2.0 | ||
-------------------------------------------------------------------------------- | ||
|
||
Contents of probable licence file $GOMODCACHE/github.com/elastic/go-sysinfo@v1.11.1/LICENSE.txt: | ||
Contents of probable licence file $GOMODCACHE/github.com/elastic/go-sysinfo@v1.13.1/LICENSE.txt: | ||
|
||
|
||
Apache License | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters