Skip to content

Commit

Permalink
style: linting, and wording
Browse files Browse the repository at this point in the history
  • Loading branch information
GeekyEggo committed Mar 18, 2024
1 parent f429ee8 commit 1ca925b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ inputs:
description: GitHub token with read and write access to actions for the repository.
required: true
default: ${{ github.token }}
deprecationMessage: This isn't needed anymore.
deprecationMessage: Token is no longer required.
useGlob:
description: Indicates whether the name, or names, should be treated as glob patterns.
required: false
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -118685,8 +118685,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
});
};
Object.defineProperty(exports, "__esModule", ({ value: true }));
const core = __importStar(__nccwpck_require__(42186));
const artifact_1 = __nccwpck_require__(79450);
const core = __importStar(__nccwpck_require__(42186));
const artifact_filter_1 = __nccwpck_require__(38025);
const utils_1 = __nccwpck_require__(71314);
(function () {
Expand Down
2 changes: 1 addition & 1 deletion src/artifact-filter.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Artifact } from "@actions/artifact";
import * as core from "@actions/core";
import { minimatch } from "minimatch";
import type { Artifact} from '@actions/artifact'
import { getInputBoolean, getInputMultilineValues } from "./utils";

/**
Expand Down
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { DefaultArtifactClient } from "@actions/artifact";
import * as core from "@actions/core";
import {DefaultArtifactClient} from '@actions/artifact'
import { getDefaultFilter } from "./artifact-filter";
import { fail } from "./utils";

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

// Get the artifacts associated with this workflow run.
const {artifacts} = await client.listArtifacts();
const { artifacts } = await client.listArtifacts();
const filter = getDefaultFilter();

// Iterate over the filtered artifacts, and remove them.
Expand Down

0 comments on commit 1ca925b

Please sign in to comment.