Skip to content

Commit 78ffc3b

Browse files
committed
gh actions: add full version comment after digest
Renovate seems to create better PRs if we have the full version as comment afterwards. podman-container-tools#934 (comment) Signed-off-by: Paul Holzinger <pholzing@redhat.com> (cherry picked from commit c557c3a) Signed-off-by: Paul Holzinger <pholzing@redhat.com>
1 parent ae42648 commit 78ffc3b

4 files changed

Lines changed: 17 additions & 17 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
storage: ${{ steps.filter.outputs.storage }}
2525
image: ${{ steps.filter.outputs.image }}
2626
steps:
27-
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
27+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
2828
- uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d # v4.0.1
2929
id: filter
3030
with:
@@ -73,8 +73,8 @@ jobs:
7373
timeout-minutes: 10
7474
name: "Storage: Cross"
7575
steps:
76-
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
77-
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
76+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
77+
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
7878
with:
7979
go-version: stable
8080
cache-dependency-path: "./storage/go.sum"
@@ -89,8 +89,8 @@ jobs:
8989
timeout-minutes: 10
9090
name: "Image: Cross"
9191
steps:
92-
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
93-
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
92+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
93+
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
9494
with:
9595
go-version: stable
9696
cache-dependency-path: "./image/go.sum"

.github/workflows/labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ jobs:
1010
pull-requests: write
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/labeler@f27b608878404679385c85cfa523b85ccb86e213 # v6
13+
- uses: actions/labeler@f27b608878404679385c85cfa523b85ccb86e213 # v6.1.0

.github/workflows/lima.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
5151
- name: Upload logs
5252
if: always()
53-
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7
53+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
5454
with:
5555
name: "logs-${{ inputs.module }}-${{ inputs.distro }}-${{ inputs.variant }}"
5656
path: |

.github/workflows/validate.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-24.04
1515
timeout-minutes: 10
1616
steps:
17-
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
17+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
1818
- name: install deps
1919
# Version of codespell bundled with Ubuntu is way old, so use pip.
2020
run: pip install --break-system-packages codespell==v2.4.1
@@ -30,10 +30,10 @@ jobs:
3030
run:
3131
working-directory: ./common
3232
steps:
33-
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
33+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
3434
with:
3535
fetch-depth: 2
36-
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
36+
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
3737
with:
3838
go-version: 1.25.x
3939
# By default the go cache will only use go.sum in the root which we don't have,
@@ -45,19 +45,19 @@ jobs:
4545
sudo apt-get -qq update
4646
sudo apt-get -qq install libseccomp-dev libgpgme-dev libbtrfs-dev libsubid-dev
4747
- name: lint-common
48-
uses: golangci/golangci-lint-action@82606bf257cbaff209d206a39f5134f0cfbfd2ee # v9
48+
uses: golangci/golangci-lint-action@82606bf257cbaff209d206a39f5134f0cfbfd2ee # v9.2.1
4949
with:
5050
version: "${{ env.LINT_VERSION }}"
5151
args: --verbose
5252
working-directory: ./common
5353
- name: lint-image
54-
uses: golangci/golangci-lint-action@82606bf257cbaff209d206a39f5134f0cfbfd2ee # v9
54+
uses: golangci/golangci-lint-action@82606bf257cbaff209d206a39f5134f0cfbfd2ee # v9.2.1
5555
with:
5656
version: "${{ env.LINT_VERSION }}"
5757
args: --verbose
5858
working-directory: ./image
5959
- name: lint-storage
60-
uses: golangci/golangci-lint-action@82606bf257cbaff209d206a39f5134f0cfbfd2ee # v9
60+
uses: golangci/golangci-lint-action@82606bf257cbaff209d206a39f5134f0cfbfd2ee # v9.2.1
6161
with:
6262
version: "${{ env.LINT_VERSION }}"
6363
args: --verbose
@@ -75,13 +75,13 @@ jobs:
7575
# Base commit sha that we use the lint the commit from
7676
EPOCH_TEST_COMMIT: "${{ github.event.pull_request.base.sha }}"
7777
steps:
78-
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
78+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
7979
with:
8080
# By default github actions creates a merge commit which fails the validation,
8181
# we only must validate the actual commits of the author.
8282
ref: ${{ github.event.pull_request.head.sha }}
8383
fetch-depth: ${{ github.event.pull_request.commits }}
84-
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
84+
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
8585
with:
8686
go-version: 1.25.x
8787
# See comment on lint task
@@ -93,8 +93,8 @@ jobs:
9393
runs-on: ubuntu-24.04
9494
timeout-minutes: 10
9595
steps:
96-
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
97-
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
96+
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
97+
- uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
9898
with:
9999
go-version: 1.25.x
100100
# See comment on lint task

0 commit comments

Comments
 (0)