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

bump up to actions/checkout@v4 #7

Merged
merged 2 commits into from
May 13, 2024
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:
os: [ubuntu-latest]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
token: ${{ secrets.PAT_WORKSPACES }}
path: getactionusage

- uses: actions/checkout@v3
- uses: actions/checkout@v4
name: Fetch the web site repo to update.
with:
token: ${{ secrets.PAT_WORKSPACES }}
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2022 by Luca Cappa [email protected]
Copyright (c) 2022-2024 by Luca Cappa [email protected]

Attribution-ShareAlike 4.0 International

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,5 +218,5 @@ Feedback is welcome, create [Issues](https://github.com/lukka/get-action-usage/i

## **License Information**

Copyright 2022-2023 by Luca Cappa [email protected]
Copyright 2022-2023-2024 by Luca Cappa [email protected]
All content of this repository is licensed under the CC BY-SA License. See the LICENSE file in the root for license information.
10 changes: 5 additions & 5 deletions graph/graph.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!-- Copyright © 2022-2023 by Luca Cappa lcappa at gmail dot com -- http://creativecommons.org/licenses/by-sa/4.0/" This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License -->
<!-- Copyright © 2022-2023-2024 by Luca Cappa lcappa at gmail dot com -- http://creativecommons.org/licenses/by-sa/4.0/" This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License -->
<!DOCTYPE html>
<meta charset="utf-8">

Expand Down Expand Up @@ -198,7 +198,7 @@

const searchA = g.append("svg:a")
.attr("xlink:href", d =>
`https://cs.github.com/?scopeName=All+repos&scope=&q=%22lukka%2F${d.name}%22+%28path%3A*.yml+OR+path%3A*.yaml%29`)
`https://github.com/search?q=%22lukka%2F${d.name}%22+%28path%3A*.yml+OR+path%3A*.yaml%29`)
.attr("target", "_blank");

searchA.append('text')
Expand Down Expand Up @@ -266,7 +266,7 @@
gravityCenter: { x: centerX, y: centerY },
url_top: repoData.repo_orig.owner.html_url,
url_bottom: repoData.repo_orig.html_url,
url_search: `https://cs.github.com/${item}/${repo}?q=`,
url_search: `https://github.com/search?type=code&q=repo%3A${item}%2F${repo}`,
selected: undefined, /* 'undefined' means to use the intrinsic diameter size for the circle */
};
const length = repos.push(repoObj);
Expand Down Expand Up @@ -410,7 +410,7 @@
});

const searchA = g.append("svg:a")
.attr("xlink:href", d => `https://cs.github.com/?scopeName=All+repos&scope=&q=%22lukka%2F${encodeURIComponent(d.id)}%22+%28path%3A*.yml+OR+path%3A*.yaml%29`)
.attr("xlink:href", d => `https://github.com/search?q=%22lukka%2F${encodeURIComponent(d.id)}%22+%28path%3A*.yml+OR+path%3A*.yaml%29`)
.attr("target", "_blank");
searchA.append('text')
.attr("x", d => d.x)
Expand Down Expand Up @@ -1008,7 +1008,7 @@
}
</script>
<div style="text-align:center;">
<span>Copyright © 2022-2023 by Luca Cappa
<span>Copyright © 2022-2023-2024 by Luca Cappa
<a href="https://github.com/lukka"><i class="fa fa-github"></i></a>
<a href="https://twitter.com/luca_cpp"><i class="fa fa-twitter"></i></a>
<a href="https://linkedin.com/in/lucacappa"><i class="fa fa-linkedin"></i></a>
Expand Down