Skip to content

Commit f8720f9

Browse files
Update all dependencies
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent b3e1a7d commit f8720f9

5 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/carpenter.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
echo "QUAY_IMG_EXP=90d" >> $GITHUB_ENV
5050
5151
- name: Checkout this project
52-
uses: actions/checkout@v4
52+
uses: actions/checkout@v5
5353

5454
- name: arcaflow-container-toolkit-action
5555
uses: arcalot/arcaflow-container-toolkit-action@v1.4.0

.github/workflows/go_generate.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
- name: Set up Go
18-
uses: actions/setup-go@v5
18+
uses: actions/setup-go@v6
1919
with:
2020
go-version: ${{ inputs.go_version }}
2121
- uses: actions/cache@v4

.github/workflows/go_lint_and_test.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
- name: Set up Golang
18-
uses: actions/setup-go@v5
18+
uses: actions/setup-go@v6
1919
with:
2020
go-version: ${{ inputs.go_version }}
2121
- name: Run golangci-lint
22-
uses: golangci/golangci-lint-action@v6
22+
uses: golangci/golangci-lint-action@v8
2323
with:
2424
version: v1.64.5
2525
args: --timeout=3m
@@ -28,9 +28,9 @@ jobs:
2828
runs-on: ubuntu-latest
2929
steps:
3030
- name: Checkout
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v5
3232
- name: Set up Golang
33-
uses: actions/setup-go@v5
33+
uses: actions/setup-go@v6
3434
with:
3535
go-version: ${{ inputs.go_version }}
3636
- name: Set up gotestfmt
@@ -59,7 +59,7 @@ jobs:
5959
limgo -coverfile=/tmp/coverage.out -config=.limgo.json -outfmt=md -outfile=/tmp/coverage.md
6060
cat /tmp/coverage.md >> $GITHUB_STEP_SUMMARY
6161
- name: Upload test results
62-
uses: actions/upload-artifact@v4
62+
uses: actions/upload-artifact@v5
6363
if: always()
6464
with:
6565
name: test-results

.github/workflows/go_release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ jobs:
3232
runs-on: ubuntu-latest
3333
steps:
3434
- name: Checkout
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v5
3636
with:
3737
fetch-depth: 0
3838
- name: Set up Go
39-
uses: actions/setup-go@v5
39+
uses: actions/setup-go@v6
4040
with:
4141
go-version: ${{ inputs.go_version }}
4242
- name: Login to the ${{ inputs.registry }} container registry
@@ -58,7 +58,7 @@ jobs:
5858
version: '~> v2'
5959
args: ${{ env.ARGS }}
6060
- name: Upload artifacts
61-
uses: actions/upload-artifact@v4
61+
uses: actions/upload-artifact@v5
6262
with:
6363
name: binaries
6464
path: dist

.github/workflows/python_release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ jobs:
2727
else echo "[ERR] wrong version format: $VERSION" ; exit 1
2828
fi
2929
- name: Check out code
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3131
- name: Download binaries
32-
uses: actions/download-artifact@v4
32+
uses: actions/download-artifact@v6
3333
with:
3434
name: binaries
3535
path: python/artifacts
3636
- name: Install Python
37-
uses: actions/setup-python@v5
37+
uses: actions/setup-python@v6
3838
with:
3939
python-version: ${{ inputs.python_version }}
4040
architecture: 'x64'

0 commit comments

Comments
 (0)