Skip to content

Commit 89038ed

Browse files
committed
update outdated actions
1 parent 8ac9f0f commit 89038ed

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/actions/save_logs_and_results/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ inputs:
66
runs:
77
using: composite
88
steps:
9-
- uses: actions/upload-artifact@v3.1.1
9+
- uses: actions/upload-artifact@v4
1010
name: Upload logs
1111
with:
1212
name: ${{ inputs.folder }}

.github/actions/setup_extension/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ runs:
1717
echo "PG_MAJOR=${{ inputs.pg_major }}" >> $GITHUB_ENV
1818
fi
1919
shell: bash
20-
- uses: actions/download-artifact@v3.0.1
20+
- uses: actions/download-artifact@v4
2121
with:
2222
name: build-${{ env.PG_MAJOR }}
2323
- name: Install Extension

.github/actions/upload_coverage/action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ inputs:
77
runs:
88
using: composite
99
steps:
10-
- uses: codecov/codecov-action@v3
10+
- uses: codecov/codecov-action@v4
1111
with:
1212
flags: ${{ inputs.flags }}
1313
token: ${{ inputs.codecov_token }}
@@ -21,7 +21,7 @@ runs:
2121
mkdir -p /tmp/codeclimate
2222
cc-test-reporter format-coverage -t lcov -o /tmp/codeclimate/${{ inputs.flags }}.json lcov.info
2323
shell: bash
24-
- uses: actions/upload-artifact@v3.1.1
24+
- uses: actions/upload-artifact@v4
2525
with:
2626
path: "/tmp/codeclimate/*.json"
2727
name: codeclimate

.github/workflows/build_and_test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
image: ${{ needs.params.outputs.build_image_name }}:${{ needs.params.outputs.sql_snapshot_pg_version }}${{ needs.params.outputs.image_suffix }}
4949
options: --user root
5050
steps:
51-
- uses: actions/checkout@v3.5.0
51+
- uses: actions/checkout@v4
5252
- name: Check Snapshots
5353
run: |
5454
git config --global --add safe.directory ${GITHUB_WORKSPACE}
@@ -125,7 +125,7 @@ jobs:
125125
- name: Build
126126
run: "./ci/build-citus.sh"
127127
shell: bash
128-
- uses: actions/upload-artifact@v3.1.1
128+
- uses: actions/upload-artifact@v4
129129
with:
130130
name: build-${{ env.PG_MAJOR }}
131131
path: |-
@@ -399,7 +399,7 @@ jobs:
399399
- test-citus-upgrade
400400
- test-pg-upgrade
401401
steps:
402-
- uses: actions/download-artifact@v3.0.1
402+
- uses: actions/download-artifact@v4
403403
with:
404404
name: "codeclimate"
405405
path: "codeclimate"

0 commit comments

Comments
 (0)