diff --git a/.github/workflows/run.yml b/.github/workflows/run.yml index 003b50d69..145a1da25 100644 --- a/.github/workflows/run.yml +++ b/.github/workflows/run.yml @@ -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 }} diff --git a/LICENSE b/LICENSE index 9f028cae7..3af521815 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2022 by Luca Cappa lcappa@gmail.com +Copyright (c) 2022-2024 by Luca Cappa lcappa@gmail.com Attribution-ShareAlike 4.0 International diff --git a/README.md b/README.md index 78f30f569..0add33926 100644 --- a/README.md +++ b/README.md @@ -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 lcappa@gmail.com +Copyright 2022-2023-2024 by Luca Cappa lcappa@gmail.com All content of this repository is licensed under the CC BY-SA License. See the LICENSE file in the root for license information. \ No newline at end of file diff --git a/graph/graph.html b/graph/graph.html index 359e22ac9..2a635c2b9 100644 --- a/graph/graph.html +++ b/graph/graph.html @@ -1,4 +1,4 @@ - + @@ -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') @@ -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); @@ -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) @@ -1008,7 +1008,7 @@ }
- Copyright © 2022-2023 by Luca Cappa + Copyright © 2022-2023-2024 by Luca Cappa