Skip to content

Commit 6529b5d

Browse files
committed
Merge remote-tracking branch 'origin/master' into eslint
2 parents 4689658 + 7cd1cb0 commit 6529b5d

File tree

4 files changed

+209
-343
lines changed

4 files changed

+209
-343
lines changed

docs/configurator.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
{%- endif %}
8686
steps:
8787
- name: Download source
88-
uses: actions/checkout@v4
88+
uses: actions/checkout@v6
8989
- name: Install Crystal
9090
uses: crystal-lang/install-crystal@v1
9191
{%- if crystal_nightly or crystal_ver %}
@@ -94,7 +94,7 @@ jobs:
9494
{%- endif %}
9595
{%- if cache_shards %}
9696
- name: Cache shards
97-
uses: actions/cache@v4
97+
uses: actions/cache@v5
9898
with:
9999
{%- if is_app %}
100100
path: lib

index.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
import Cache from "@actions/cache";
1+
import * as Cache from "@actions/cache";
2+
import * as Core from "@actions/core";
3+
import * as Glob from "@actions/glob";
4+
import * as IO from "@actions/io";
5+
import * as ToolCache from "@actions/tool-cache";
26
import ChildProcess from "child_process";
3-
import Core from "@actions/core";
47
import {promises as FS} from "fs";
5-
import Glob from "@actions/glob";
6-
import IO from "@actions/io";
78
import {Octokit} from "@octokit/rest";
89
import Path from "path";
9-
import ToolCache from "@actions/tool-cache";
1010
import URL from "url";
1111
import Util from "util";
1212
import {cmpTags} from "tag-cmp";

0 commit comments

Comments
 (0)