Skip to content

Commit 34828a8

Browse files
Bump actions/upload-artifact from 4 to 5 (#1467)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 59e0da4 commit 34828a8

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/coverage_reporting.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
-Dsonar.python.coverage.reportPaths=receptorctl/receptorctl_coverage.xml
6969
7070
- name: Upload Code Coverage Report from Receptor Unit Tests
71-
uses: actions/upload-artifact@v4
71+
uses: actions/upload-artifact@v5
7272
with:
7373
name: receptor-coverage-report
7474
path: coverage.txt
@@ -77,7 +77,7 @@ jobs:
7777
run: echo "PR ${{ github.event.number }}" > pr_number.txt
7878

7979
- name: Upload PR Number
80-
uses: actions/upload-artifact@v4
80+
uses: actions/upload-artifact@v5
8181
with:
8282
name: pr_number
8383
path: pr_number.txt
@@ -87,13 +87,13 @@ jobs:
8787
run: .github/workflows/artifact-k8s-logs.sh
8888

8989
- name: Archive receptor binary
90-
uses: actions/upload-artifact@v4.4.3
90+
uses: actions/upload-artifact@v5
9191
with:
9292
name: receptor
9393
path: /usr/local/bin/receptor
9494

9595
- name: Upload Code Coverage Report from Receptorctl Unit Tests
96-
uses: actions/upload-artifact@v4
96+
uses: actions/upload-artifact@v5
9797
with:
9898
name: receptorctl-coverage-report
9999
path: receptorctl/receptorctl_coverage.xml

.github/workflows/pull_request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,14 +72,14 @@ jobs:
7272
run: find /tmp/receptor-testing -name controlsock -delete
7373

7474
- name: Artifact receptor data for ${{ matrix.go-version }}
75-
uses: actions/upload-artifact@v4.4.3
75+
uses: actions/upload-artifact@v5
7676
if: ${{ failure() }}
7777
with:
7878
name: test-logs-${{ matrix.go-version }}
7979
path: /tmp/receptor-testing
8080

8181
- name: Archive receptor binary for ${{ matrix.go-version }}
82-
uses: actions/upload-artifact@v4.4.3
82+
uses: actions/upload-artifact@v5
8383
with:
8484
name: receptor-${{ matrix.go-version }}
8585
path: /usr/local/bin/receptor

.github/workflows/test-reporting.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,14 +69,14 @@ jobs:
6969
run: find /tmp/receptor-testing -name controlsock -delete
7070

7171
- name: Artifact receptor data
72-
uses: actions/upload-artifact@v4
72+
uses: actions/upload-artifact@v5
7373
if: ${{ failure() }}
7474
with:
7575
name: test-logs
7676
path: /tmp/receptor-testing
7777

7878
- name: Archive receptor binary
79-
uses: actions/upload-artifact@v4
79+
uses: actions/upload-artifact@v5
8080
with:
8181
name: receptor
8282
path: /usr/local/bin/receptor

0 commit comments

Comments
 (0)