diff options
author | Junio C Hamano <gitster@pobox.com> | 2022-12-10 14:02:09 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-12-10 14:02:09 +0900 |
commit | 634d02686677ba5153837709e4133998bc80dd2c (patch) | |
tree | 199e6ee7efc764b25fb68d10811856c686454270 /.github/workflows | |
parent | 8972be02520e0b02c864c3c8fa7ed2271043f0fc (diff) | |
parent | f115c96e7a837b324283dee113d6ad8798954827 (diff) | |
download | git-634d02686677ba5153837709e4133998bc80dd2c.tar.gz |
Merge branch 'ab/ci-retire-set-output' into maint-2.38
CI fix.
* ab/ci-retire-set-output:
CI: migrate away from deprecated "set-output" syntax
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/l10n.yml | 4 | ||||
-rw-r--r-- | .github/workflows/main.yml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/l10n.yml b/.github/workflows/l10n.yml index 27f72f0ff3..f7ea0f00a4 100644 --- a/.github/workflows/l10n.yml +++ b/.github/workflows/l10n.yml @@ -23,8 +23,8 @@ jobs: base=${{ github.event.before }} head=${{ github.event.after }} fi - echo "::set-output name=base::$base" - echo "::set-output name=head::$head" + echo base=$base >>$GITHUB_OUTPUT + echo head=$head >>$GITHUB_OUTPUT - 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 4754c0719a..b6d0cf24ff 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@v3 |