Skip to content

Commit cebf182

Browse files
authored
build: update workflow action versions (#33)
* build: update workflow action versions * fix: remove duplicate log in output --------- Co-authored-by: Richard Herman <[email protected]>
1 parent 13c2c87 commit cebf182

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,22 @@ jobs:
1515

1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v6
1919

2020
- name: Create test file
2121
run: echo hello > world.txt
2222

23-
- uses: actions/upload-artifact@v4
23+
- uses: actions/upload-artifact@v6
2424
with:
2525
name: my-artifact
2626
path: world.txt
2727

28-
- uses: actions/upload-artifact@v4
28+
- uses: actions/upload-artifact@v6
2929
with:
3030
name: my-artifact-2
3131
path: world.txt
3232

33-
- uses: actions/upload-artifact@v4
33+
- uses: actions/upload-artifact@v6
3434
with:
3535
name: my-artifact-3
3636
path: world.txt

dist/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130881,7 +130881,6 @@ function getDefaultFilter() {
130881130881
for (const { name } of filter(artifacts)) {
130882130882
try {
130883130883
await client.deleteArtifact(name);
130884-
info(`Successfully deleted artifact: "${name}"`);
130885130884
}
130886130885
catch (e) {
130887130886
core_error(`Failed to delete artifact: "${name}": ${e instanceof Error ? e.message : e}`);

0 commit comments

Comments
 (0)