Skip to content

Commit 1ca925b

Browse files
committed
style: linting, and wording
1 parent f429ee8 commit 1ca925b

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ inputs:
88
description: GitHub token with read and write access to actions for the repository.
99
required: true
1010
default: ${{ github.token }}
11-
deprecationMessage: This isn't needed anymore.
11+
deprecationMessage: Token is no longer required.
1212
useGlob:
1313
description: Indicates whether the name, or names, should be treated as glob patterns.
1414
required: false

dist/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -118685,8 +118685,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
118685118685
});
118686118686
};
118687118687
Object.defineProperty(exports, "__esModule", ({ value: true }));
118688-
const core = __importStar(__nccwpck_require__(42186));
118689118688
const artifact_1 = __nccwpck_require__(79450);
118689+
const core = __importStar(__nccwpck_require__(42186));
118690118690
const artifact_filter_1 = __nccwpck_require__(38025);
118691118691
const utils_1 = __nccwpck_require__(71314);
118692118692
(function () {

src/artifact-filter.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
import type { Artifact } from "@actions/artifact";
12
import * as core from "@actions/core";
23
import { minimatch } from "minimatch";
3-
import type { Artifact} from '@actions/artifact'
44
import { getInputBoolean, getInputMultilineValues } from "./utils";
55

66
/**

src/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1+
import { DefaultArtifactClient } from "@actions/artifact";
12
import * as core from "@actions/core";
2-
import {DefaultArtifactClient} from '@actions/artifact'
33
import { getDefaultFilter } from "./artifact-filter";
44
import { fail } from "./utils";
55

@@ -9,7 +9,7 @@ import { fail } from "./utils";
99
let failureCount = 0;
1010

1111
// Get the artifacts associated with this workflow run.
12-
const {artifacts} = await client.listArtifacts();
12+
const { artifacts } = await client.listArtifacts();
1313
const filter = getDefaultFilter();
1414

1515
// Iterate over the filtered artifacts, and remove them.

0 commit comments

Comments
 (0)