Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dev-packages/size-limit-gh-action/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { promises as fs } from 'node:fs';
import path from 'node:path';
import { fileURLToPath } from 'node:url';

import * as artifact from '@actions/artifact';
import { DefaultArtifactClient } from '@actions/artifact';
import * as core from '@actions/core';
import { exec } from '@actions/exec';
import { context, getOctokit } from '@actions/github';
Expand Down Expand Up @@ -195,7 +195,7 @@ async function runSizeLimitOnComparisonBranch() {
const resultsFilePath = getResultsFilePath();

const limit = new SizeLimitFormatter();
const artifactClient = artifact.create();
const artifactClient = new DefaultArtifactClient();

const { output: baseOutput } = await execSizeLimit();

Expand Down
2 changes: 1 addition & 1 deletion dev-packages/size-limit-gh-action/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"fix": "eslint . --format stylish --fix"
},
"dependencies": {
"@actions/artifact": "1.1.2",
"@actions/artifact": "2.1.11",
"@actions/core": "1.10.1",
"@actions/exec": "1.1.1",
"@actions/github": "^5.0.0",
Expand Down
Loading
Loading