diff options
author | renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> | 2024-07-20 19:14:13 +0900 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-08-04 12:29:40 +0700 |
commit | 47f742125bf8f775b7a3cc2a304efbf7563da8d0 (patch) | |
tree | 982bb7b86de6930a0aa3ac99a00d956d5a07b5ae /.github | |
parent | c3f0a3dd3b6694047aa6aa64d87c4fcc36944acd (diff) |
git/ci: Update CI dependencies.
Updates:
- all github actions
- sbo-maintainer-tools
- gitlab cli
- gitlab ci build images
- update sbolint comments in place
- update reverse dependency comments in place
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 42 |
1 files changed, 34 insertions, 8 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bcc7189d1634..5d6654bde45e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ concurrency: env: # renovate: datasource=docker depName=aclemons/sbo-maintainer-tools versioning=docker - SBO_MAINTAINER_TOOLS_IMAGE: aclemons/sbo-maintainer-tools:0.9.0-15.0@sha256:a857eeb783622430a77ffdc0e9be0fa7d38b4d30696f362454eb990614a5ade8 + SBO_MAINTAINER_TOOLS_IMAGE: aclemons/sbo-maintainer-tools:0.9.1-15.0@sha256:7a961b60a487ecd3e6171f4e7e7ee7c8f659fdc6a37aac26ae2dcd5a3cb8414f jobs: changes: @@ -24,7 +24,7 @@ jobs: outputs: matrix: ${{ steps.set-matrix.outputs.matrix }} steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 with: show-progress: false fetch-depth: 2 @@ -33,7 +33,7 @@ jobs: - name: Get slackbuild directories which have changes. id: changed-dirs - uses: tj-actions/changed-files@90a06d6ba9543371ab4df8eeca0be07ca6054959 # v42.0.2 + uses: tj-actions/changed-files@c65cd883420fd2eb864698a825fc4162dd94482c # v44.5.7 with: base_sha: ${{ github.event.pull_request.base.sha }} dir_names: true @@ -41,7 +41,13 @@ jobs: dir_names_max_depth: 2 json: true quotepath: false - files_ignore: .github/** + files_ignore: | + .github/** + .gitignore + .gitlab-ci.yml + .mailmap + ChangeLog.txt + README - name: List all changed files run: echo '${{ steps.changed-dirs.outputs.all_changed_files }}' @@ -66,7 +72,7 @@ jobs: matrix: include: ${{ fromJSON(needs.changes.outputs.matrix) }} steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 with: show-progress: false ref: ${{ github.head_ref }} @@ -100,11 +106,21 @@ jobs: shell: bash + - name: Find Comment + uses: peter-evans/find-comment@3eae4d37986fb5a8592848f6a574fdf654e61f9e # v3.1.0 + id: fc + with: + issue-number: ${{ github.event.number }} + comment-author: 'github-actions[bot]' + body-includes: "sbolint - ${{ matrix.dir }}" + - name: Comment with sbolint results uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0 with: + comment-id: ${{ steps.fc.outputs.comment-id }} issue-number: ${{ github.event.number }} body-path: comment-output + edit-mode: replace dependencies: name: Compute reverse dependencies @@ -117,7 +133,7 @@ jobs: matrix: include: ${{ fromJSON(needs.changes.outputs.matrix) }} steps: - - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 with: show-progress: false ref: ${{ github.head_ref }} @@ -128,7 +144,7 @@ jobs: - name: Look up dependencies id: get_deps - uses: fjogeleit/http-request-action@8af28031091191b8e41afb287e0e56fce753c7b4 # v1.15.4 + uses: fjogeleit/http-request-action@44816be1eabb9c1122d8d775923f39bbe55c67a3 # v1.16.1 with: url: 'https://slackbuilds.org/revdeps.php?q=${{ env.PACKAGE_NAME }}' method: 'GET' @@ -147,8 +163,18 @@ jobs: shell: bash - - name: Comment with dependeny results + - name: Find Comment + uses: peter-evans/find-comment@3eae4d37986fb5a8592848f6a574fdf654e61f9e # v3.1.0 + id: fc + with: + issue-number: ${{ github.event.number }} + comment-author: 'github-actions[bot]' + body-includes: "reverse dependencies - ${{ matrix.dir }}" + + - name: Comment with dependency results uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0 with: + comment-id: ${{ steps.fc.outputs.comment-id }} issue-number: ${{ github.event.number }} body-path: comment-output + edit-mode: replace |