Skip to content

Commit

Permalink
chore(deps): update all github-actions
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Mar 11, 2025
1 parent 41e9b5a commit 17e4fd5
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 21 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
steps:
- name: Run release-please
id: release
uses: google-github-actions/release-please-action@v3
uses: google-github-actions/release-please-action@v4
with:
token: ${{ secrets.FLUENCEBOT_RELEASE_PLEASE_PAT }}
command: manifest
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
uses: dsherret/rust-toolchain-file@v1

- name: Install cargo-edit
uses: baptiste0928/cargo-install@v2.2.0
uses: baptiste0928/cargo-install@v3.3.0
with:
crate: cargo-edit

Expand All @@ -72,16 +72,16 @@ jobs:
run: cargo set-version ${{ steps.version.outputs.version }}

- name: Setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "18"
node-version: "22"

- name: Set version in aqua
working-directory: aqua
run: npm version ${{ steps.version.outputs.version }}

- name: Commit version bump
uses: stefanzweifel/git-auto-commit-action@v4
uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "chore: Bump registry version to ${{ steps.version.outputs.version }}"
branch: ${{ fromJson(needs.release-please.outputs.pr).headBranchName }}
Expand All @@ -104,7 +104,7 @@ jobs:
uses: actions/checkout@v4

- name: Import secrets
uses: hashicorp/vault-action@v2.7.3
uses: hashicorp/vault-action@v3.3.0
with:
url: https://vault.fluence.dev
path: jwt/github
Expand Down Expand Up @@ -132,9 +132,9 @@ jobs:
working-directory: service

- name: Setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "18"
node-version: "22"
registry-url: "https://registry.npmjs.org"
cache-dependency-path: "aqua/package-lock.json"
cache: "npm"
Expand All @@ -150,7 +150,7 @@ jobs:
working-directory: aqua

- name: Import secrets
uses: hashicorp/vault-action@v2.7.3
uses: hashicorp/vault-action@v3.3.0
with:
url: https://vault.fluence.dev
path: jwt/github
Expand All @@ -166,7 +166,7 @@ jobs:
uses: actions-rust-lang/setup-rust-toolchain@v1

- name: Install cargo-workspaces
uses: baptiste0928/cargo-install@v2.2.0
uses: baptiste0928/cargo-install@v3.3.0
with:
crate: cargo-workspaces

Expand Down Expand Up @@ -210,7 +210,7 @@ jobs:
echo "found any?:" "${{ steps.status.outputs.found }}"
- name: Import secrets
uses: hashicorp/vault-action@v2.7.3
uses: hashicorp/vault-action@v3.3.0
with:
url: https://vault.fluence.dev
path: jwt/github
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
run: cargo clippy -Z unstable-options --all -- -D warnings

- name: Install cargo-nextest
uses: baptiste0928/cargo-install@v2.2.0
uses: baptiste0928/cargo-install@v3.3.0
with:
crate: cargo-nextest
version: 0.9.22
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:

- name: Import secrets
if: inputs.snapshot == true
uses: hashicorp/vault-action@v2.7.3
uses: hashicorp/vault-action@v3.3.0
with:
url: https://vault.fluence.dev
path: jwt/github
Expand All @@ -74,9 +74,9 @@ jobs:
kv/cargo-registry/users/ci token | CARGO_REGISTRIES_FLUENCE_TOKEN
- name: Setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "18"
node-version: "22"
registry-url: "https://registry.npmjs.org"
cache-dependency-path: "aqua/package-lock.json"
cache: "npm"
Expand All @@ -85,7 +85,7 @@ jobs:
working-directory: aqua

- name: Install cargo-workspaces
uses: baptiste0928/cargo-install@v2.2.0
uses: baptiste0928/cargo-install@v3.3.0
with:
crate: cargo-workspaces

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:

steps:
- name: Import secrets
uses: hashicorp/vault-action@v2.7.3
uses: hashicorp/vault-action@v3.3.0
with:
url: https://vault.fluence.dev
path: jwt/github
Expand All @@ -65,9 +65,9 @@ jobs:
ref: ${{ inputs.ref }}

- name: Setup node with self-hosted registry
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "18"
node-version: "22"
registry-url: "https://npm.fluence.dev"
cache: "npm"
cache-dependency-path: "**/package-lock.json"
Expand Down Expand Up @@ -124,13 +124,13 @@ jobs:
run: docker pull $NOX_IMAGE

- name: Run nox network
uses: isbang/compose-action@v1.4.1
uses: isbang/compose-action@v2.2.0
with:
compose-file: ".github/e2e/docker-compose.yml"
down-flags: "--volumes"

- name: Setup python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.9"
cache: "pip"
Expand Down

0 comments on commit 17e4fd5

Please sign in to comment.