* [PATCH 0/4] Upgrade a couple GitHub Actions
@ 2025-10-16 15:48 Johannes Schindelin via GitGitGadget
2025-10-16 15:48 ` [PATCH 1/4] build(deps): bump actions/download-artifact from 4 to 5 Johannes Schindelin via GitGitGadget
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Johannes Schindelin via GitGitGadget @ 2025-10-16 15:48 UTC (permalink / raw)
To: git; +Cc: Johannes Schindelin
The Dependabot setup of Git for Windows suggested a couple of version
upgrades; I extracted those that apply to Git itself.
Note that I took authorship of the commits because Dependabot's email is not
exactly meant for follow-up discussions.
Johannes Schindelin (4):
build(deps): bump actions/download-artifact from 4 to 5
build(deps): bump actions/checkout from 4 to 5
build(deps): bump actions/setup-python from 5 to 6
build(deps): bump actions/github-script from 7 to 8
.github/workflows/check-style.yml | 2 +-
.github/workflows/check-whitespace.yml | 2 +-
.github/workflows/coverity.yml | 2 +-
.github/workflows/main.yml | 34 +++++++++++++-------------
4 files changed, 20 insertions(+), 20 deletions(-)
base-commit: 143f58ef7535f8f8a80d810768a18bdf3807de26
Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-1990%2Fdscho%2Fupgrade-a-couple-github-actions-v1
Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-1990/dscho/upgrade-a-couple-github-actions-v1
Pull-Request: https://github.com/gitgitgadget/git/pull/1990
--
gitgitgadget
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH 1/4] build(deps): bump actions/download-artifact from 4 to 5
2025-10-16 15:48 [PATCH 0/4] Upgrade a couple GitHub Actions Johannes Schindelin via GitGitGadget
@ 2025-10-16 15:48 ` Johannes Schindelin via GitGitGadget
2025-10-16 15:48 ` [PATCH 2/4] build(deps): bump actions/checkout " Johannes Schindelin via GitGitGadget
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Johannes Schindelin via GitGitGadget @ 2025-10-16 15:48 UTC (permalink / raw)
To: git; +Cc: Johannes Schindelin, Johannes Schindelin
From: Johannes Schindelin <johannes.schindelin@gmx.de>
Bumps
[actions/download-artifact](https://github.com/actions/download-artifact)
from 4 to 5.
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](https://github.com/actions/download-artifact/compare/v4...v5)
---
updated-dependencies:
- dependency-name: actions/download-artifact
dependency-version: '5'
dependency-type: direct:production
update-type: version-update:semver-major
...
Originally-authored-by: dependabot[bot] <support@github.com>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
---
.github/workflows/main.yml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 393ea4d1cc..a1c76c4641 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -140,7 +140,7 @@ jobs:
cancel-in-progress: ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
steps:
- name: download tracked files and build artifacts
- uses: actions/download-artifact@v4
+ uses: actions/download-artifact@v5
with:
name: windows-artifacts
path: ${{github.workspace}}
@@ -226,7 +226,7 @@ jobs:
steps:
- uses: git-for-windows/setup-git-for-windows-sdk@v1
- name: download tracked files and build artifacts
- uses: actions/download-artifact@v4
+ uses: actions/download-artifact@v5
with:
name: vs-artifacts
path: ${{github.workspace}}
@@ -292,7 +292,7 @@ jobs:
shell: pwsh
run: pip install meson ninja
- name: Download build artifacts
- uses: actions/download-artifact@v4
+ uses: actions/download-artifact@v5
with:
name: windows-meson-artifacts
path: build
--
gitgitgadget
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 2/4] build(deps): bump actions/checkout from 4 to 5
2025-10-16 15:48 [PATCH 0/4] Upgrade a couple GitHub Actions Johannes Schindelin via GitGitGadget
2025-10-16 15:48 ` [PATCH 1/4] build(deps): bump actions/download-artifact from 4 to 5 Johannes Schindelin via GitGitGadget
@ 2025-10-16 15:48 ` Johannes Schindelin via GitGitGadget
2025-10-16 15:48 ` [PATCH 3/4] build(deps): bump actions/setup-python from 5 to 6 Johannes Schindelin via GitGitGadget
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Johannes Schindelin via GitGitGadget @ 2025-10-16 15:48 UTC (permalink / raw)
To: git; +Cc: Johannes Schindelin, Johannes Schindelin
From: Johannes Schindelin <johannes.schindelin@gmx.de>
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v4...v5)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: '5'
dependency-type: direct:production
update-type: version-update:semver-major
...
Originally-authored-by: dependabot[bot] <support@github.com>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
---
.github/workflows/check-style.yml | 2 +-
.github/workflows/check-whitespace.yml | 2 +-
.github/workflows/coverity.yml | 2 +-
.github/workflows/main.yml | 22 +++++++++++-----------
4 files changed, 14 insertions(+), 14 deletions(-)
diff --git a/.github/workflows/check-style.yml b/.github/workflows/check-style.yml
index c052a5df23..19a145d4ad 100644
--- a/.github/workflows/check-style.yml
+++ b/.github/workflows/check-style.yml
@@ -20,7 +20,7 @@ jobs:
jobname: ClangFormat
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
with:
fetch-depth: 0
diff --git a/.github/workflows/check-whitespace.yml b/.github/workflows/check-whitespace.yml
index d0a78fc426..928fd4cfe2 100644
--- a/.github/workflows/check-whitespace.yml
+++ b/.github/workflows/check-whitespace.yml
@@ -19,7 +19,7 @@ jobs:
check-whitespace:
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
with:
fetch-depth: 0
diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml
index 01a0437b2f..cfa17d394a 100644
--- a/.github/workflows/coverity.yml
+++ b/.github/workflows/coverity.yml
@@ -38,7 +38,7 @@ jobs:
COVERITY_LANGUAGE: cxx
COVERITY_PLATFORM: overridden-below
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
- name: install minimal Git for Windows SDK
if: contains(matrix.os, 'windows')
uses: git-for-windows/setup-git-for-windows-sdk@v1
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index a1c76c4641..6bcd129b85 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -112,7 +112,7 @@ jobs:
group: windows-build-${{ github.ref }}
cancel-in-progress: ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
- uses: git-for-windows/setup-git-for-windows-sdk@v1
- name: build
shell: bash
@@ -173,10 +173,10 @@ jobs:
group: vs-build-${{ github.ref }}
cancel-in-progress: ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
- uses: git-for-windows/setup-git-for-windows-sdk@v1
- name: initialize vcpkg
- uses: actions/checkout@v4
+ uses: actions/checkout@v5
with:
repository: 'microsoft/vcpkg'
path: 'compat/vcbuild/vcpkg'
@@ -258,7 +258,7 @@ jobs:
group: windows-meson-build-${{ github.ref }}
cancel-in-progress: ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
- uses: actions/setup-python@v5
- name: Set up dependencies
shell: pwsh
@@ -286,7 +286,7 @@ jobs:
group: windows-meson-test-${{ matrix.nr }}-${{ github.ref }}
cancel-in-progress: ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
- uses: actions/setup-python@v5
- name: Set up dependencies
shell: pwsh
@@ -331,7 +331,7 @@ jobs:
TEST_OUTPUT_DIRECTORY: ${{github.workspace}}/t
runs-on: ${{matrix.vector.pool}}
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
- run: ci/install-dependencies.sh
- run: ci/run-build-and-tests.sh
- name: print test failures
@@ -352,7 +352,7 @@ jobs:
CI_JOB_IMAGE: ubuntu-latest
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
- run: ci/install-dependencies.sh
- run: ci/run-build-and-minimal-fuzzers.sh
dockerized:
@@ -429,7 +429,7 @@ jobs:
else
apt-get -q update && apt-get -q -y install git
fi
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
- run: ci/install-dependencies.sh
- run: useradd builder --create-home
- run: chown -R builder .
@@ -454,7 +454,7 @@ jobs:
group: static-analysis-${{ github.ref }}
cancel-in-progress: ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
- run: ci/install-dependencies.sh
- run: ci/run-static-analysis.sh
- run: ci/check-directional-formatting.bash
@@ -469,7 +469,7 @@ jobs:
group: sparse-${{ github.ref }}
cancel-in-progress: ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
- name: Install other dependencies
run: ci/install-dependencies.sh
- run: make sparse
@@ -485,6 +485,6 @@ jobs:
CI_JOB_IMAGE: ubuntu-latest
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v5
- run: ci/install-dependencies.sh
- run: ci/test-documentation.sh
--
gitgitgadget
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 3/4] build(deps): bump actions/setup-python from 5 to 6
2025-10-16 15:48 [PATCH 0/4] Upgrade a couple GitHub Actions Johannes Schindelin via GitGitGadget
2025-10-16 15:48 ` [PATCH 1/4] build(deps): bump actions/download-artifact from 4 to 5 Johannes Schindelin via GitGitGadget
2025-10-16 15:48 ` [PATCH 2/4] build(deps): bump actions/checkout " Johannes Schindelin via GitGitGadget
@ 2025-10-16 15:48 ` Johannes Schindelin via GitGitGadget
2025-10-16 15:48 ` [PATCH 4/4] build(deps): bump actions/github-script from 7 to 8 Johannes Schindelin via GitGitGadget
2025-10-16 17:47 ` [PATCH 0/4] Upgrade a couple GitHub Actions Junio C Hamano
4 siblings, 0 replies; 6+ messages in thread
From: Johannes Schindelin via GitGitGadget @ 2025-10-16 15:48 UTC (permalink / raw)
To: git; +Cc: Johannes Schindelin, Johannes Schindelin
From: Johannes Schindelin <johannes.schindelin@gmx.de>
Bumps [actions/setup-python](https://github.com/actions/setup-python)
from 5 to 6.
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](https://github.com/actions/setup-python/compare/v5...v6)
---
updated-dependencies:
- dependency-name: actions/setup-python
dependency-version: '6'
dependency-type: direct:production
update-type: version-update:semver-major
...
Originally-authored-by: dependabot[bot] <support@github.com>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
---
.github/workflows/main.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 6bcd129b85..4cdb1dcb5c 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -259,7 +259,7 @@ jobs:
cancel-in-progress: ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
steps:
- uses: actions/checkout@v5
- - uses: actions/setup-python@v5
+ - uses: actions/setup-python@v6
- name: Set up dependencies
shell: pwsh
run: pip install meson ninja
@@ -287,7 +287,7 @@ jobs:
cancel-in-progress: ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
steps:
- uses: actions/checkout@v5
- - uses: actions/setup-python@v5
+ - uses: actions/setup-python@v6
- name: Set up dependencies
shell: pwsh
run: pip install meson ninja
--
gitgitgadget
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 4/4] build(deps): bump actions/github-script from 7 to 8
2025-10-16 15:48 [PATCH 0/4] Upgrade a couple GitHub Actions Johannes Schindelin via GitGitGadget
` (2 preceding siblings ...)
2025-10-16 15:48 ` [PATCH 3/4] build(deps): bump actions/setup-python from 5 to 6 Johannes Schindelin via GitGitGadget
@ 2025-10-16 15:48 ` Johannes Schindelin via GitGitGadget
2025-10-16 17:47 ` [PATCH 0/4] Upgrade a couple GitHub Actions Junio C Hamano
4 siblings, 0 replies; 6+ messages in thread
From: Johannes Schindelin via GitGitGadget @ 2025-10-16 15:48 UTC (permalink / raw)
To: git; +Cc: Johannes Schindelin, Johannes Schindelin
From: Johannes Schindelin <johannes.schindelin@gmx.de>
Bumps [actions/github-script](https://github.com/actions/github-script)
from 7 to 8.
- [Release notes](https://github.com/actions/github-script/releases)
- [Commits](https://github.com/actions/github-script/compare/v7...v8)
---
updated-dependencies:
- dependency-name: actions/github-script
dependency-version: '8'
dependency-type: direct:production
update-type: version-update:semver-major
...
Originally-authored-by: dependabot[bot] <support@github.com>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
---
.github/workflows/main.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 4cdb1dcb5c..3622fec742 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -63,7 +63,7 @@ jobs:
echo "skip_concurrent=$skip_concurrent" >>$GITHUB_OUTPUT
- name: skip if the commit or tree was already tested
id: skip-if-redundant
- uses: actions/github-script@v7
+ uses: actions/github-script@v8
if: steps.check-ref.outputs.enabled == 'yes'
with:
github-token: ${{secrets.GITHUB_TOKEN}}
--
gitgitgadget
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH 0/4] Upgrade a couple GitHub Actions
2025-10-16 15:48 [PATCH 0/4] Upgrade a couple GitHub Actions Johannes Schindelin via GitGitGadget
` (3 preceding siblings ...)
2025-10-16 15:48 ` [PATCH 4/4] build(deps): bump actions/github-script from 7 to 8 Johannes Schindelin via GitGitGadget
@ 2025-10-16 17:47 ` Junio C Hamano
4 siblings, 0 replies; 6+ messages in thread
From: Junio C Hamano @ 2025-10-16 17:47 UTC (permalink / raw)
To: Johannes Schindelin via GitGitGadget; +Cc: git, Johannes Schindelin
"Johannes Schindelin via GitGitGadget" <gitgitgadget@gmail.com>
writes:
> The Dependabot setup of Git for Windows suggested a couple of version
> upgrades; I extracted those that apply to Git itself.
Very much appreciated. Queued.
Thanks.
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2025-10-16 17:47 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-16 15:48 [PATCH 0/4] Upgrade a couple GitHub Actions Johannes Schindelin via GitGitGadget
2025-10-16 15:48 ` [PATCH 1/4] build(deps): bump actions/download-artifact from 4 to 5 Johannes Schindelin via GitGitGadget
2025-10-16 15:48 ` [PATCH 2/4] build(deps): bump actions/checkout " Johannes Schindelin via GitGitGadget
2025-10-16 15:48 ` [PATCH 3/4] build(deps): bump actions/setup-python from 5 to 6 Johannes Schindelin via GitGitGadget
2025-10-16 15:48 ` [PATCH 4/4] build(deps): bump actions/github-script from 7 to 8 Johannes Schindelin via GitGitGadget
2025-10-16 17:47 ` [PATCH 0/4] Upgrade a couple GitHub Actions Junio C Hamano
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).