Skip to content

Commit c66d616

Browse files
chore: Updated github actions to latest
1 parent e29c773 commit c66d616

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/cicd.yml

Lines changed: 10 additions & 10 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@v3
15+
- uses: actions/checkout@v4
1616
- name: Use Node.js ${{ matrix.node-version }}
17-
uses: actions/setup-node@v3
17+
uses: actions/setup-node@v4
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@v3
30+
- uses: actions/checkout@v4
3131
with:
3232
fetch-depth: 0
3333
- name: Set up Python ${{ matrix.python-version }}
34-
uses: actions/setup-python@v3
34+
uses: actions/setup-python@v5
3535
with:
3636
python-version: ${{ matrix.python-version }}
3737
- name: Cache requirements
38-
uses: actions/cache@v3
38+
uses: actions/cache@v4
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@v3
75+
- uses: actions/checkout@v4
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@v3
83+
uses: actions/cache@v4
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@v3
117-
- uses: actions/setup-node@v3
116+
uses: actions/checkout@v4
117+
- uses: actions/setup-node@v4
118118
with:
119119
node-version: lts/*
120120
registry-url: https://registry.npmjs.org/
@@ -129,7 +129,7 @@ jobs:
129129
npm pack
130130
mv acpr-rate-limit-postgresql-*.tgz acpr-rate-limit-postgresql.tgz
131131
- name: Create a Github release
132-
uses: softprops/action-gh-release@v1
132+
uses: softprops/action-gh-release@v2
133133
with:
134134
files: acpr-rate-limit-postgresql.tgz
135135
body:

0 commit comments

Comments
 (0)