Message ID | patch-v2-1.1-4e7db0db3be-20221207T014848Z-avarab@gmail.com (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | [v2] CI: migrate away from deprecated "set-output" syntax | expand |
Ævar Arnfjörð Bjarmason <avarab@gmail.com> writes: > +- echo "::set-output name=base::$base" > +- echo "::set-output name=head::$head" > ++ cat >>$GITHUB_OUTPUT <<-EOF > ++ base=$base > ++ head=$head > ++ EOF Hmph, I do not trust this part. The redirection operator "<<-" causes the leading tabs in the here-doc-text stripped, but the .yml file does not indent with tab to begin with. I suspect the leading spaces will all be stripped and not seen by the shell, so the distinction may not matter, which means the use of "<<-" is very much misleading. Let's stick to the dumb and proven echo "base=$base" >>$GITHUB_OUTPUT echo "head=$head" >>$GITHUB_OUTPUT instead, which is used throughout the rewrite in this patch.
On Thu, Dec 08 2022, Junio C Hamano wrote: > Ævar Arnfjörð Bjarmason <avarab@gmail.com> writes: > >> +- echo "::set-output name=base::$base" >> +- echo "::set-output name=head::$head" >> ++ cat >>$GITHUB_OUTPUT <<-EOF >> ++ base=$base >> ++ head=$head >> ++ EOF > > Hmph, I do not trust this part. > > The redirection operator "<<-" causes the leading tabs in the > here-doc-text stripped, but the .yml file does not indent with tab > to begin with. > > I suspect the leading spaces will all be stripped and not seen by > the shell, so the distinction may not matter, which means the use of > "<<-" is very much misleading. > > Let's stick to the dumb and proven > > echo "base=$base" >>$GITHUB_OUTPUT > echo "head=$head" >>$GITHUB_OUTPUT > > instead, which is used throughout the rewrite in this patch. Sure, I'll re-roll with that.
Ævar Arnfjörð Bjarmason <avarab@gmail.com> writes: >> Let's stick to the dumb and proven >> >> echo "base=$base" >>$GITHUB_OUTPUT >> echo "head=$head" >>$GITHUB_OUTPUT >> >> instead, which is used throughout the rewrite in this patch. > > Sure, I'll re-roll with that. Ah, no need. I've already amended the one under discussion and it is in 'next' together with the last bit from Johannes to use the updated upload/download artifact Action. Thanks.
diff --git a/.github/workflows/l10n.yml b/.github/workflows/l10n.yml index 27f72f0ff34..8fa073db2dc 100644 --- a/.github/workflows/l10n.yml +++ b/.github/workflows/l10n.yml @@ -23,8 +23,10 @@ jobs: base=${{ github.event.before }} head=${{ github.event.after }} fi - echo "::set-output name=base::$base" - echo "::set-output name=head::$head" + cat >>$GITHUB_OUTPUT <<-EOF + base=$base + head=$head + EOF - name: Run partial clone run: | git -c init.defaultBranch=master init --bare . diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9afacfa0b33..d1e16009b11 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -34,7 +34,7 @@ jobs: then enabled=no fi - echo "::set-output name=enabled::$enabled" + echo "enabled=$enabled" >>$GITHUB_OUTPUT - name: skip if the commit or tree was already tested id: skip-if-redundant uses: actions/github-script@v6