Skip to content
Open
Show file tree
Hide file tree
Changes from 2 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/alerts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

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

- name: Render and test lifecycle
uses: scality/action-prom-render-test@1.0.3
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/docker-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,20 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set up Docker Buildk
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Login to Registry
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ github.token }}

- name: Build and push
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: .
push: true
Expand All @@ -42,7 +42,7 @@ jobs:
cache-to: type=gha,mode=max

- name: Build and push federation image
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
context: images/federation
push: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Create Release
uses: softprops/action-gh-release@v2
uses: softprops/action-gh-release@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down
28 changes: 14 additions & 14 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,20 +31,20 @@ jobs:
file: ""
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v4

- name: Login to Registry
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ github.token }}

- name: Build and push ${{ matrix.name }}
uses: docker/build-push-action@v6
uses: docker/build-push-action@v7
with:
push: true
context: ${{ matrix.context }}
Expand All @@ -57,7 +57,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6

- uses: actions/setup-go@v5
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

actions/setup-go@v5 was not updated. If a Node 24-compatible major version is available, it should be bumped here for consistency with the rest of the PR.

— Claude Code

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

actions/setup-go@v5 still runs on Node 20. v6 is available and should be bumped here for consistency with the rest of this PR.

— Claude Code

with:
Expand All @@ -74,7 +74,7 @@ jobs:
-nodes 1 -stream -timeout 5m -slowSpecThreshold 60
working-directory: bucket-scanner

- uses: codecov/codecov-action@v5
- uses: codecov/codecov-action@v6
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: bucket-scanner
Expand All @@ -84,7 +84,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: '22'
Expand Down Expand Up @@ -132,7 +132,7 @@ jobs:
- 27019:27019
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: '22'
Expand All @@ -146,7 +146,7 @@ jobs:
BACKBEAT_CONFIG_FILE: tests/config.json
TEST_SUITE: test

- uses: codecov/codecov-action@v5
- uses: codecov/codecov-action@v6
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: ./coverage/test
Expand Down Expand Up @@ -215,7 +215,7 @@ jobs:
- 27019:27019
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: '22'
Expand Down Expand Up @@ -283,7 +283,7 @@ jobs:
- 27019:27019
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: '22'
Expand Down Expand Up @@ -320,15 +320,15 @@ jobs:
cloudserver_tag: [ '9.0.19' ]
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: '22'
cache: yarn
- name: Install node dependencies
run: yarn install --ignore-engines --frozen-lockfile --network-concurrency 1
- name: Login to Registry
uses: docker/login-action@v3
uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
Expand Down Expand Up @@ -363,7 +363,7 @@ jobs:
PROFILE: ${{ matrix.profile }}
TEST_SUITE: ft_test:queuepopulator
run: yarn run cover
- uses: codecov/codecov-action@v4
- uses: codecov/codecov-action@v6
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: ./coverage/ft_test:queuepopulator
Expand Down
Loading