Skip to content

Commit dcf9ce7

Browse files
committed
chore: Update outdated GitHub Actions versions
1 parent 6179d10 commit dcf9ce7

5 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/autofix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
timeout-minutes: 10
1717

1818
steps:
19-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
2020

2121
- name: Use Node.js lts/*
2222
uses: actions/setup-node@v6

.github/workflows/cr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
steps:
1010
- name: Checkout code
11-
uses: actions/checkout@v5
11+
uses: actions/checkout@v6
1212

1313
- uses: actions/setup-node@v6
1414
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
with:
1818
fetch-depth: 0
1919

.github/workflows/smoke.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
git config --global core.autocrlf false
2424
git config --global core.eol lf
2525
26-
- uses: actions/checkout@v5
26+
- uses: actions/checkout@v6
2727

2828
- name: Use Node.js 20.x
2929
uses: actions/setup-node@v6
@@ -45,7 +45,7 @@ jobs:
4545
run: node ./scripts/pack.mjs /tmp/slidev-pkgs
4646

4747
- name: Upload artifacts
48-
uses: actions/upload-artifact@v4
48+
uses: actions/upload-artifact@v6
4949
with:
5050
name: slidev-packages
5151
path: /tmp/slidev-pkgs
@@ -66,7 +66,7 @@ jobs:
6666
git config --global core.autocrlf false
6767
git config --global core.eol lf
6868
69-
- uses: actions/checkout@v5
69+
- uses: actions/checkout@v6
7070

7171
- name: Use Node.js 20.x
7272
uses: actions/setup-node@v6
@@ -83,7 +83,7 @@ jobs:
8383
run: nci
8484

8585
- name: Download artifacts
86-
uses: actions/download-artifact@v6
86+
uses: actions/download-artifact@v7
8787
with:
8888
name: slidev-packages
8989
path: /tmp/slidev-pkgs
@@ -121,7 +121,7 @@ jobs:
121121
working-directory: ../temp/slidev-project
122122

123123
- name: E2E Smoke Test
124-
uses: cypress-io/github-action@v4
124+
uses: cypress-io/github-action@v7
125125
if: ${{ matrix.os != 'windows-latest' }}
126126
with:
127127
install-command: echo
@@ -146,7 +146,7 @@ jobs:
146146

147147
# Commented out because it's not working
148148
# - name: E2E test in global mode
149-
# uses: cypress-io/github-action@v4
149+
# uses: cypress-io/github-action@v7
150150
# if: ${{ matrix.os != 'windows' }}
151151
# with:
152152
# project: ${{ github.workspace }}

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
git config --global core.autocrlf false
3030
git config --global core.eol lf
3131
32-
- uses: actions/checkout@v5
32+
- uses: actions/checkout@v6
3333

3434
- name: Use Node.js ${{ matrix.node-version }}
3535
uses: actions/setup-node@v6
@@ -55,7 +55,7 @@ jobs:
5555
timeout-minutes: 20
5656

5757
steps:
58-
- uses: actions/checkout@v5
58+
- uses: actions/checkout@v6
5959

6060
- uses: actions/setup-node@v6
6161
with:
@@ -74,7 +74,7 @@ jobs:
7474
run: cp pnpm-lock.yaml package-lock.json
7575

7676
- name: Cypress
77-
uses: cypress-io/github-action@v6
77+
uses: cypress-io/github-action@v7
7878
with:
7979
install-command: echo
8080
build: nr build

0 commit comments

Comments
 (0)