Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ jobs:
- name: ccache info
id: ccache-info
run: |
echo "::set-output name=cache-dir::$(ccache --get-config cache_dir)"
echo "cache-dir=$(ccache --get-config cache_dir)" >> $GITHUB_OUTPUT
- name: Cache ccache
uses: actions/cache@v3
with:
Expand Down Expand Up @@ -270,7 +270,7 @@ jobs:
id: ccache-info
shell: bash
run: |
echo "::set-output name=cache-dir::$(ccache --get-config cache_dir)"
echo "cache-dir=$(ccache --get-config cache_dir)" >> $GITHUB_OUTPUT
- name: Cache ccache
uses: actions/cache@v3
with:
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ jobs:
- name: ccache info
id: ccache-info
run: |
echo "::set-output name=cache-dir::$(ccache --get-config cache_dir)"
echo "cache-dir=$(ccache --get-config cache_dir)" >> $GITHUB_OUTPUT
- name: Cache ccache
uses: actions/cache@v3
with:
Expand Down Expand Up @@ -274,7 +274,8 @@ jobs:
- name: RubyGems info
id: rubygems-info
run: |
Write-Output "::set-output name=gem-dir::$(ridk exec gem env gemdir)"
Write-Output "gem-dir=$(ridk exec gem env gemdir)" | `
Out-File -FilePath $env:GITHUB_OUTPUT -Encoding utf8 -Append
- name: Cache RubyGems
uses: actions/cache@v3
with:
Expand Down
6 changes: 3 additions & 3 deletions dev/tasks/r/github.packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
id: save-version
shell: bash
run: |
echo "::set-output name=pkg_version::$(grep ^Version arrow/r/DESCRIPTION | sed s/Version:\ //)"
echo "pkg_version=$(grep ^Version arrow/r/DESCRIPTION | sed s/Version:\ //)" >> $GITHUB_OUTPUT

- uses: r-lib/actions/setup-r@v2
with:
Expand Down Expand Up @@ -215,14 +215,14 @@ jobs:

# encode contrib.url for artifact name
cmd <- paste0(
"::set-output name=path::",
"path=",
gsub(
"/", "__",
contrib.url("", type = "binary")
),
"\n"
)
cat(cmd)
cat(cmd, file = Sys.getenv("GITHUB_OUTPUT"), append = TRUE)

- name: Upload binary artifact
uses: actions/upload-artifact@v3
Expand Down