Skip to content

Commit 1b03ad6

Browse files
chore(deps): update all github-actions
1 parent ad5d03b commit 1b03ad6

File tree

5 files changed

+28
-28
lines changed

5 files changed

+28
-28
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-latest
2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
2828

2929
- name: Lint actions
3030
uses: reviewdog/action-actionlint@v1

.github/workflows/release.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
steps:
2222
- name: Run release-please
2323
id: release
24-
uses: google-github-actions/release-please-action@v3
24+
uses: google-github-actions/release-please-action@v4
2525
with:
2626
token: ${{ secrets.FLUENCEBOT_RELEASE_PLEASE_PAT }}
2727
command: manifest
@@ -45,7 +45,7 @@ jobs:
4545

4646
steps:
4747
- name: Checkout
48-
uses: actions/checkout@v3
48+
uses: actions/checkout@v4
4949
with:
5050
ref: ${{ fromJson(needs.release-please.outputs.pr).headBranchName }}
5151
token: ${{ secrets.FLUENCEBOT_RELEASE_PLEASE_PAT }}
@@ -54,7 +54,7 @@ jobs:
5454
uses: dsherret/rust-toolchain-file@v1
5555

5656
- name: Install cargo-workspaces
57-
uses: baptiste0928/cargo-install@v1.3.1
57+
uses: baptiste0928/cargo-install@v3.3.0
5858
with:
5959
crate: cargo-workspaces
6060

@@ -80,12 +80,12 @@ jobs:
8080
working-directory: ./src/spell/modules/spell/spell
8181
run: ./build.sh
8282

83-
- uses: pnpm/action-setup@v2.2.4
83+
- uses: pnpm/action-setup@v4.0.0
8484
with:
8585
version: 8
8686

8787
- name: Setup node
88-
uses: actions/setup-node@v3
88+
uses: actions/setup-node@v4
8989
with:
9090
node-version: '18'
9191
registry-url: 'https://registry.npmjs.org'
@@ -103,7 +103,7 @@ jobs:
103103
working-directory: src/aqua/installation-spell
104104

105105
- name: Commit version bump
106-
uses: stefanzweifel/git-auto-commit-action@v4
106+
uses: stefanzweifel/git-auto-commit-action@v5
107107
with:
108108
commit_message: 'chore: Bump spell version to ${{ steps.version.outputs.version }}'
109109
branch: ${{ fromJson(needs.release-please.outputs.pr).headBranchName }}
@@ -122,12 +122,12 @@ jobs:
122122

123123
steps:
124124
- name: Checkout
125-
uses: actions/checkout@v3
125+
uses: actions/checkout@v4
126126
with:
127127
token: ${{ secrets.FLUENCEBOT_RELEASE_PLEASE_PAT }}
128128

129129
- name: Import secrets
130-
uses: hashicorp/vault-action@v2.5.0
130+
uses: hashicorp/vault-action@v3.0.0
131131
with:
132132
url: https://vault.fluence.dev
133133
path: jwt/github
@@ -144,7 +144,7 @@ jobs:
144144
uses: dsherret/rust-toolchain-file@v1
145145

146146
- name: Install Marine
147-
uses: baptiste0928/cargo-install@v1.3.1
147+
uses: baptiste0928/cargo-install@v3.3.0
148148
with:
149149
crate: marine
150150

@@ -153,7 +153,7 @@ jobs:
153153
run: ./build.sh
154154

155155
- name: Install cargo-workspaces
156-
uses: baptiste0928/cargo-install@v1.3.1
156+
uses: baptiste0928/cargo-install@v3.3.0
157157
with:
158158
crate: cargo-workspaces
159159

@@ -167,12 +167,12 @@ jobs:
167167
--skip-published \
168168
--yes
169169
170-
- uses: pnpm/action-setup@v2.2.4
170+
- uses: pnpm/action-setup@v4.0.0
171171
with:
172172
version: 8
173173

174174
- name: Setup node
175-
uses: actions/setup-node@v3
175+
uses: actions/setup-node@v4
176176
with:
177177
node-version: '18'
178178
registry-url: 'https://registry.npmjs.org'
@@ -210,7 +210,7 @@ jobs:
210210
echo "found any?:" "${{ steps.status.outputs.found }}"
211211
212212
- name: Import secrets
213-
uses: hashicorp/vault-action@v2.5.0
213+
uses: hashicorp/vault-action@v3.0.0
214214
with:
215215
url: https://vault.fluence.dev
216216
path: jwt/github

.github/workflows/run-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,18 @@ jobs:
2727

2828
steps:
2929
- name: Checkout repository
30-
uses: actions/checkout@v3
30+
uses: actions/checkout@v4
3131
with:
3232
repository: fluencelabs/spell
3333
ref: ${{ github.ref }}
3434

3535
- name: Setup pnpm
36-
uses: pnpm/action-setup@v2.2.4
36+
uses: pnpm/action-setup@v4.0.0
3737
with:
3838
version: 8
3939

4040
- name: Setup node with self-hosted npm registry
41-
uses: actions/setup-node@v3
41+
uses: actions/setup-node@v4
4242
with:
4343
node-version: '18'
4444
registry-url: 'https://npm.fluence.dev'
@@ -71,7 +71,7 @@ jobs:
7171
timeout-minutes: 60
7272

7373
steps:
74-
- uses: actions/checkout@v3
74+
- uses: actions/checkout@v4
7575
with:
7676
repository: fluencelabs/spell
7777
ref: ${{ github.ref }}

.github/workflows/snapshot.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@ jobs:
4343
id-token: write
4444

4545
steps:
46-
- uses: actions/checkout@v3
46+
- uses: actions/checkout@v4
4747
with:
4848
repository: fluencelabs/spell
4949
ref: ${{ inputs.ref }}
5050

5151
- name: Import secrets
52-
uses: hashicorp/vault-action@v2.5.0
52+
uses: hashicorp/vault-action@v3.0.0
5353
with:
5454
url: https://vault.fluence.dev
5555
path: jwt/github
@@ -102,12 +102,12 @@ jobs:
102102
path: src/spell/modules/spell
103103

104104
- name: Setup pnpm
105-
uses: pnpm/action-setup@v2.2.4
105+
uses: pnpm/action-setup@v4.0.0
106106
with:
107107
version: 8
108108

109109
- name: Setup node with self-hosted npm registry
110-
uses: actions/setup-node@v3
110+
uses: actions/setup-node@v4
111111
with:
112112
node-version: "18"
113113
registry-url: "https://npm.fluence.dev"

.github/workflows/tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
steps:
4040
- name: Import secrets
41-
uses: hashicorp/vault-action@v2.5.0
41+
uses: hashicorp/vault-action@v3.0.0
4242
with:
4343
url: https://vault.fluence.dev
4444
path: jwt/github
@@ -52,13 +52,13 @@ jobs:
5252
kv/npm-registry/basicauth/ci token | NODE_AUTH_TOKEN;
5353
5454
- name: Checkout repository
55-
uses: actions/checkout@v3
55+
uses: actions/checkout@v4
5656
with:
5757
repository: fluencelabs/spell
5858
ref: ${{ inputs.ref }}
5959

6060
- name: Setup node with self-hosted registry
61-
uses: actions/setup-node@v3
61+
uses: actions/setup-node@v4
6262
with:
6363
node-version: '18'
6464
registry-url: 'https://npm.fluence.dev'
@@ -73,7 +73,7 @@ jobs:
7373
version: ${{ inputs.fcli-version }}
7474

7575
- name: Login to DockerHub
76-
uses: docker/login-action@v2
76+
uses: docker/login-action@v3
7777
with:
7878
registry: docker.fluence.dev
7979
username: ${{ env.DOCKER_USERNAME }}
@@ -83,13 +83,13 @@ jobs:
8383
run: docker pull $NOX_IMAGE
8484

8585
- name: Run nox network
86-
uses: isbang/compose-action@v1.4.1
86+
uses: isbang/compose-action@v2.0.2
8787
with:
8888
compose-file: '.github/e2e/docker-compose.yml'
8989
down-flags: '--volumes'
9090

9191
- name: Setup python
92-
uses: actions/setup-python@v4
92+
uses: actions/setup-python@v5
9393
with:
9494
python-version: '3.9'
9595
cache: 'pip'

0 commit comments

Comments
 (0)