Skip to content

Commit 7567075

Browse files
chore(deps): update all actions
1 parent d797992 commit 7567075

File tree

6 files changed

+22
-22
lines changed

6 files changed

+22
-22
lines changed

.github/workflows/docker-proxy-apache-e2e.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ jobs:
1919

2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
22+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
2323

2424
- name: Start containers
2525
run: docker compose -f "./docker/apache-verdaccio/docker-compose.yaml" up -d --build
2626

2727
- name: Install node
28-
uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3
28+
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
2929
with:
30-
node-version: 18
30+
node-version: 22
3131
- name: verdaccio cli
3232
run: npm install -g verdaccio --registry http://localhost
3333
- name: gastby cli

.github/workflows/docker-proxy-nginx-e2e.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ jobs:
1818

1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
21+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
2222

2323
- name: Start containers
2424
run: docker compose -f "./docker/proxy-nginx/docker-compose.yaml" up -d --build
2525

2626
- name: Install node
27-
uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3
27+
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
2828
with:
29-
node-version: 18
29+
node-version: 22
3030
- name: npm setup
3131
run: |
3232
npm config set fetch-retries="5"

.github/workflows/e2e-ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ jobs:
1919
build:
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
22+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
2323
- name: Use Node
24-
uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3
24+
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
2525
with:
2626
node-version-file: '.nvmrc'
2727
- name: corepack
@@ -40,7 +40,7 @@ jobs:
4040
- name: Install
4141
run: pnpm install
4242
- name: Cache .pnpm-store
43-
uses: actions/cache@2f8e54208210a422b2efd51efaa6bd6d7ca8920f # v3
43+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
4444
with:
4545
path: ~/.pnpm-store
4646
key: pnpm-${{ hashFiles('pnpm-lock.yaml') }}-${{ github.run_id }}-${{ github.sha }}
@@ -49,7 +49,7 @@ jobs:
4949
- name: build
5050
run: pnpm build
5151
- name: Cache tools
52-
uses: actions/cache@2f8e54208210a422b2efd51efaa6bd6d7ca8920f # v3
52+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
5353
id: cache-tools
5454
with:
5555
path: ./tools/
@@ -66,15 +66,15 @@ jobs:
6666
name: ${{ matrix.pkg }}/ ubuntu-latest / ${{ matrix.node }}
6767
runs-on: ubuntu-latest
6868
steps:
69-
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
70-
- uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3
69+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
70+
- uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
7171
with:
7272
node-version: ${{ matrix.node }}
7373
- name: corepack
7474
run: corepack enable
7575
- name: pnpm enable
7676
run: corepack prepare pnpm@latest-8 --activate
77-
- uses: actions/cache@2f8e54208210a422b2efd51efaa6bd6d7ca8920f # v3
77+
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
7878
with:
7979
path: ~/.pnpm-store
8080
key: pnpm-${{ hashFiles('pnpm-lock.yaml') }}-${{ github.run_id }}-${{ github.sha }}
@@ -85,7 +85,7 @@ jobs:
8585
run: npm config set registry https://rg.verdaccio.org
8686
- name: Install
8787
run: pnpm install --frozen-lockfile
88-
- uses: actions/cache@2f8e54208210a422b2efd51efaa6bd6d7ca8920f # v3
88+
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
8989
with:
9090
path: ./tools/
9191
key: pkg-${{ hashFiles('pnpm-lock.yaml') }}-${{ github.run_id }}-${{ github.sha }}

.github/workflows/e2e-ui-ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,18 @@ jobs:
1414

1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
17+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
1818

1919
- name: Start containers
2020
run: docker compose -f "./docker/docker-e2e-ui/docker-compose.yaml" up -d --build
2121

2222
- name: Install node
23-
uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3
23+
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
2424
with:
25-
node-version: 18
25+
node-version: 22
2626

2727
- name: Node
28-
uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3
28+
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
2929
with:
3030
node-version-file: '.nvmrc'
3131

.github/workflows/smok-test-docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
test:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3
14+
- uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
1515
with:
16-
node-version: 18
16+
node-version: 22
1717
- name: Docker test
1818
run: |
1919
docker run -d -it --rm --name verdaccio -p 4873:4873 verdaccio/verdaccio:latest

.github/workflows/update-canary.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
name: Update verdaccio canary dependency
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3
21+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
2222
- name: Use Node
23-
uses: actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3
23+
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
2424
with:
2525
node-version-file: '.nvmrc'
2626
- name: corepack

0 commit comments

Comments
 (0)