Skip to content

Commit a266339

Browse files
authored
Merge pull request #72 from ether/dependabot/github_actions/actions/checkout-4
Bump actions/checkout from 3 to 4
2 parents afb42a8 + 3658dc6 commit a266339

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/backend-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ jobs:
2222
sudo apt install -y --no-install-recommends libreoffice libreoffice-pdfimport
2323
-
2424
name: Install etherpad core
25-
uses: actions/checkout@v3
25+
uses: actions/checkout@v4
2626
with:
2727
repository: ether/etherpad-lite
2828
-
2929
name: Checkout plugin repository
30-
uses: actions/checkout@v3
30+
uses: actions/checkout@v4
3131
with:
3232
path: ./node_modules/__tmp
3333
-

.github/workflows/codeql.yml

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

2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
2828

2929
- name: Initialize CodeQL
3030
uses: github/codeql-action/init@v2

.github/workflows/frontend-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
printf %s\\n '::set-output name=tunnel_id::${{ github.run_id }}-${{ github.run_number }}-${{ github.job }}'
1919
-
2020
name: Check out Etherpad core
21-
uses: actions/checkout@v3
21+
uses: actions/checkout@v4
2222
with:
2323
repository: ether/etherpad-lite
2424
-
@@ -33,7 +33,7 @@ jobs:
3333
name: Install legacy npm for correct dependency resolution
3434
-
3535
name: Check out the plugin
36-
uses: actions/checkout@v3
36+
uses: actions/checkout@v4
3737
with:
3838
path: ./node_modules/__tmp
3939
-

.github/workflows/npmpublish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
# conflicts with this plugin's clone, etherpad-lite must be cloned and
2323
# moved out before this plugin's repo is cloned to $GITHUB_WORKSPACE.
2424
-
25-
uses: actions/checkout@v3
25+
uses: actions/checkout@v4
2626
with:
2727
repository: ether/etherpad-lite
2828
path: etherpad-lite
@@ -31,7 +31,7 @@ jobs:
3131
# etherpad-lite has been moved outside of $GITHUB_WORKSPACE, so it is now
3232
# safe to clone this plugin's repo to $GITHUB_WORKSPACE.
3333
-
34-
uses: actions/checkout@v3
34+
uses: actions/checkout@v4
3535
# This is necessary for actions/setup-node because '..' can't be used in
3636
# cache-dependency-path.
3737
-
@@ -79,7 +79,7 @@ jobs:
7979
runs-on: ubuntu-latest
8080
steps:
8181
-
82-
uses: actions/checkout@v3
82+
uses: actions/checkout@v4
8383
with:
8484
fetch-depth: 0
8585
-

0 commit comments

Comments
 (0)