12
12
matrix :
13
13
node-version : [16.x, lts/*, latest]
14
14
steps :
15
- - uses : actions/checkout@v3
15
+ - uses : actions/checkout@v4
16
16
- name : Use Node.js ${{ matrix.node-version }}
17
- uses : actions/setup-node@v3
17
+ uses : actions/setup-node@v4
18
18
with :
19
19
node-version : ${{ matrix.node-version }}
20
20
- run : npm ci
@@ -27,15 +27,15 @@ jobs:
27
27
matrix :
28
28
python-version : ["3.10"]
29
29
steps :
30
- - uses : actions/checkout@v3
30
+ - uses : actions/checkout@v4
31
31
with :
32
32
fetch-depth : 0
33
33
- name : Set up Python ${{ matrix.python-version }}
34
- uses : actions/setup-python@v3
34
+ uses : actions/setup-python@v5
35
35
with :
36
36
python-version : ${{ matrix.python-version }}
37
37
- name : Cache requirements
38
- uses : actions/cache@v3
38
+ uses : actions/cache@v4
39
39
with :
40
40
path : ~/.cache/pip
41
41
key : ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
@@ -72,15 +72,15 @@ jobs:
72
72
- 5432:5432
73
73
74
74
steps :
75
- - uses : actions/checkout@v3
75
+ - uses : actions/checkout@v4
76
76
- name : Setup Perl
77
77
id : perl
78
78
uses : shogo82148/actions-setup-perl@v1
79
79
with :
80
80
perl-version : ' 5.34'
81
81
install-modules-with : cpm
82
82
- name : Cache CPAN Modules
83
- uses : actions/cache@v3
83
+ uses : actions/cache@v4
84
84
with :
85
85
path : local
86
86
key : perl-${{ steps.perl.outputs.perl-hash }}
@@ -113,8 +113,8 @@ jobs:
113
113
id-token : write
114
114
steps :
115
115
- name : Checkout the repository
116
- uses : actions/checkout@v3
117
- - uses : actions/setup-node@v3
116
+ uses : actions/checkout@v4
117
+ - uses : actions/setup-node@v4
118
118
with :
119
119
node-version : lts/*
120
120
registry-url : https://registry.npmjs.org/
@@ -129,7 +129,7 @@ jobs:
129
129
npm pack
130
130
mv acpr-rate-limit-postgresql-*.tgz acpr-rate-limit-postgresql.tgz
131
131
- name : Create a Github release
132
- uses : softprops/action-gh-release@v1
132
+ uses : softprops/action-gh-release@v2
133
133
with :
134
134
files : acpr-rate-limit-postgresql.tgz
135
135
body :
0 commit comments