Skip to content
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

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

Closed
wants to merge 1 commit into from
Closed
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
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 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 }}

Expand All @@ -59,7 +59,7 @@ jobs:
uses: actions-rust-lang/setup-rust-toolchain@v1

- name: Install cargo-edit
uses: baptiste0928/cargo-install@v2.0.0
uses: baptiste0928/cargo-install@v3.1.1
with:
crate: cargo-edit
version: v0.12.1
Expand All @@ -69,7 +69,7 @@ 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"
registry-url: "https://registry.npmjs.org"
Expand All @@ -81,7 +81,7 @@ jobs:
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 aqua-ipfs version to ${{ steps.version.outputs.version }}"
branch: ${{ fromJson(needs.release-please.outputs.pr).headBranchName }}
Expand All @@ -101,10 +101,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

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

- name: Install cargo-workspaces
uses: baptiste0928/cargo-install@v2.0.0
uses: baptiste0928/cargo-install@v3.1.1
with:
crate: cargo-workspaces
version: v0.2.44
Expand All @@ -134,7 +134,7 @@ jobs:
working-directory: service

- name: Setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "18"
registry-url: "https://registry.npmjs.org"
Expand Down Expand Up @@ -185,7 +185,7 @@ jobs:

- name: Upload aqua-ipfs package
if: needs.release-please.outputs.release-created
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
files: aqua-ipfs.tar.gz
tag_name: ${{ needs.release-please.outputs.tag-name }}
Expand Down Expand Up @@ -217,7 +217,7 @@ jobs:
echo "found any?:" "${{ steps.status.outputs.found }}"

- name: Import secrets
uses: hashicorp/vault-action@v2.4.3
uses: hashicorp/vault-action@v3.0.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 @@ -20,7 +20,7 @@

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1
Expand All @@ -29,7 +29,7 @@
uses: fluencelabs/setup-marine@v1

- name: Install cargo-nextest
uses: baptiste0928/cargo-install@v2.0.0
uses: baptiste0928/cargo-install@v3.1.1
with:
crate: cargo-nextest
version: 0.9.22
Expand All @@ -45,7 +45,7 @@
run: cargo nextest run --release --all-features --no-fail-fast

- name: Run cargo clippy
uses: actions-rs/cargo@v1

Check failure on line 48 in .github/workflows/run-tests.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/run-tests.yml#L48

the runner of "actions-rs/cargo@v1" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
Raw output
.github/workflows/run-tests.yml:48:15: the runner of "actions-rs/cargo@v1" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
with:
command: clippy
args: -Z unstable-options --all --manifest-path service/Cargo.toml
Expand All @@ -56,10 +56,10 @@

steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "18"
registry-url: "https://registry.npmjs.org"
Expand All @@ -84,13 +84,13 @@

steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup rust toolchain
uses: actions-rust-lang/setup-rust-toolchain@v1

- name: Run cargo fmt
uses: actions-rs/cargo@v1

Check failure on line 93 in .github/workflows/run-tests.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/run-tests.yml#L93

the runner of "actions-rs/cargo@v1" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
Raw output
.github/workflows/run-tests.yml:93:15: the runner of "actions-rs/cargo@v1" action is too old to run on GitHub Actions. update the action's version to fix this issue [action]
with:
command: fmt
args: --all --manifest-path service/Cargo.toml -- --check
4 changes: 2 additions & 2 deletions .github/workflows/snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
id-token: write

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
repository: fluencelabs/aqua-ipfs
ref: ${{ inputs.ref }}
Expand All @@ -57,7 +57,7 @@ jobs:
run: ./build.sh

- name: Import secrets
uses: hashicorp/vault-action@v2.5.0
uses: hashicorp/vault-action@v3.0.0
with:
url: https://vault.fluence.dev
path: jwt/github
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:

steps:
- name: Import secrets
uses: hashicorp/vault-action@v2.4.3
uses: hashicorp/vault-action@v3.0.0
with:
url: https://vault.fluence.dev
path: jwt/github
Expand All @@ -50,7 +50,7 @@ jobs:
kv/docker-registry/basicauth/ci password | DOCKER_PASSWORD

- name: Checkout aqua-ipfs
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: fluencelabs/aqua-ipfs
ref: ${{ inputs.ref }}
Expand All @@ -68,7 +68,7 @@ jobs:
run: ./build.sh

- name: Setup node with self-hosted registry
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "18"
registry-url: "https://npm.fluence.dev"
Expand All @@ -88,7 +88,7 @@ jobs:
flags: "--save-dev"

- 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 @@ -98,13 +98,13 @@ jobs:
run: docker pull $NOX_IMAGE

- name: Run nox network
uses: isbang/compose-action@v1.4.1
uses: isbang/compose-action@v2.0.1
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