Skip to content

Commit ec78276

Browse files
chore: updated github actions to latest
1 parent 235119c commit ec78276

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/cicd.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
matrix:
1313
node-version: [16.x, lts/*, latest]
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v6
1616
- name: Use Node.js ${{ matrix.node-version }}
17-
uses: actions/setup-node@v4
17+
uses: actions/setup-node@v6
1818
with:
1919
node-version: ${{ matrix.node-version }}
2020
- run: npm ci
@@ -27,15 +27,15 @@ jobs:
2727
matrix:
2828
python-version: ["3.10"]
2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v6
3131
with:
3232
fetch-depth: 0
3333
- name: Set up Python ${{ matrix.python-version }}
34-
uses: actions/setup-python@v5
34+
uses: actions/setup-python@v6
3535
with:
3636
python-version: ${{ matrix.python-version }}
3737
- name: Cache requirements
38-
uses: actions/cache@v4
38+
uses: actions/cache@v5
3939
with:
4040
path: ~/.cache/pip
4141
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
@@ -72,15 +72,15 @@ jobs:
7272
- 5432:5432
7373

7474
steps:
75-
- uses: actions/checkout@v4
75+
- uses: actions/checkout@v6
7676
- name: Setup Perl
7777
id: perl
7878
uses: shogo82148/actions-setup-perl@v1
7979
with:
8080
perl-version: '5.34'
8181
install-modules-with: cpm
8282
- name: Cache CPAN Modules
83-
uses: actions/cache@v4
83+
uses: actions/cache@v5
8484
with:
8585
path: local
8686
key: perl-${{ steps.perl.outputs.perl-hash }}
@@ -113,8 +113,8 @@ jobs:
113113
id-token: write
114114
steps:
115115
- name: Checkout the repository
116-
uses: actions/checkout@v4
117-
- uses: actions/setup-node@v4
116+
uses: actions/checkout@v6
117+
- uses: actions/setup-node@v6
118118
with:
119119
node-version: lts/*
120120
registry-url: https://registry.npmjs.org/

0 commit comments

Comments
 (0)