Skip to content

chore(deps): update all github-actions (major) #251

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Lint actions
uses: reviewdog/action-actionlint@v1
Expand Down
30 changes: 15 additions & 15 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 All @@ -45,7 +45,7 @@ jobs:

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

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

Expand All @@ -80,14 +80,14 @@ jobs:
working-directory: ./src/spell/modules/spell/spell
run: ./build.sh

- uses: pnpm/action-setup@v2.2.4
- uses: pnpm/action-setup@v4.1.0
with:
version: 8

- 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: 'pnpm'

Expand All @@ -103,7 +103,7 @@ jobs:
working-directory: src/aqua/installation-spell

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

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{ secrets.FLUENCEBOT_RELEASE_PLEASE_PAT }}

- name: Import secrets
uses: hashicorp/vault-action@v2.5.0
uses: hashicorp/vault-action@v3.3.0
with:
url: https://vault.fluence.dev
path: jwt/github
Expand All @@ -144,7 +144,7 @@ jobs:
uses: dsherret/rust-toolchain-file@v1

- name: Install Marine
uses: baptiste0928/cargo-install@v1.3.1
uses: baptiste0928/cargo-install@v3.3.0
with:
crate: marine

Expand All @@ -153,7 +153,7 @@ jobs:
run: ./build.sh

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

Expand All @@ -167,14 +167,14 @@ jobs:
--skip-published \
--yes

- uses: pnpm/action-setup@v2.2.4
- uses: pnpm/action-setup@v4.1.0
with:
version: 8

- 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: 'pnpm'

Expand Down Expand Up @@ -210,7 +210,7 @@ jobs:
echo "found any?:" "${{ steps.status.outputs.found }}"

- name: Import secrets
uses: hashicorp/vault-action@v2.5.0
uses: hashicorp/vault-action@v3.3.0
with:
url: https://vault.fluence.dev
path: jwt/github
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,20 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: fluencelabs/spell
ref: ${{ github.ref }}

- name: Setup pnpm
uses: pnpm/action-setup@v2.2.4
uses: pnpm/action-setup@v4.1.0
with:
version: 8

- name: Setup node with self-hosted npm 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: 'pnpm'

Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
timeout-minutes: 60

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: fluencelabs/spell
ref: ${{ github.ref }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ jobs:
id-token: write

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: fluencelabs/spell
ref: ${{ inputs.ref }}

- name: Import secrets
uses: hashicorp/vault-action@v2.5.0
uses: hashicorp/vault-action@v3.3.0
with:
url: https://vault.fluence.dev
path: jwt/github
Expand Down Expand Up @@ -102,14 +102,14 @@ jobs:
path: src/spell/modules/spell

- name: Setup pnpm
uses: pnpm/action-setup@v2.2.4
uses: pnpm/action-setup@v4.1.0
with:
version: 8

- name: Setup node with self-hosted npm 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: "pnpm"

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

steps:
- name: Import secrets
uses: hashicorp/vault-action@v2.5.0
uses: hashicorp/vault-action@v3.3.0
with:
url: https://vault.fluence.dev
path: jwt/github
Expand All @@ -52,15 +52,15 @@ jobs:
kv/npm-registry/basicauth/ci token | NODE_AUTH_TOKEN;

- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: fluencelabs/spell
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'

- name: Setup Rust toolchain
Expand All @@ -73,7 +73,7 @@ jobs:
version: ${{ inputs.fcli-version }}

- name: Login to DockerHub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
registry: docker.fluence.dev
username: ${{ env.DOCKER_USERNAME }}
Expand All @@ -83,13 +83,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
Loading