Skip to content

Commit b1e2bb2

Browse files
bump version
1 parent 4e4cf97 commit b1e2bb2

4 files changed

Lines changed: 11 additions & 13 deletions

File tree

.github/workflows/build.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
steps:
2727
- name: Checkout repository
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v5
2929

3030
- name: Setup go
3131
uses: actions/setup-go@v5
@@ -82,7 +82,7 @@ jobs:
8282

8383
steps:
8484
- name: Checkout repository
85-
uses: actions/checkout@v4
85+
uses: actions/checkout@v5
8686

8787
- name: Setup Docker Buildx
8888
uses: docker/setup-buildx-action@v3
@@ -122,4 +122,3 @@ jobs:
122122
with:
123123
name: image.tar
124124
path: ${{ runner.temp }}/image.tar
125-

.github/workflows/publish-website.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
paths:
88
- website/**
99
- .github/workflows/publish-website.yaml
10-
10+
1111
workflow_dispatch:
1212

1313
permissions:
@@ -33,14 +33,14 @@ jobs:
3333
- name: Install Hugo
3434
run: |
3535
wget -O ${{ runner.temp }}/hugo.deb https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_linux-amd64.deb \
36-
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb
36+
&& sudo dpkg -i ${{ runner.temp }}/hugo.deb
3737
3838
- name: Install Dart Sass Embedded
3939
run: |
4040
sudo snap install dart-sass-embedded
4141
4242
- name: Checkout
43-
uses: actions/checkout@v4
43+
uses: actions/checkout@v5
4444
with:
4545
submodules: recursive
4646
fetch-depth: 0
@@ -76,7 +76,7 @@ jobs:
7676
hugo \
7777
--gc \
7878
--minify \
79-
--baseURL "${{ steps.pages.outputs.base_url }}/"
79+
--baseURL "${{ steps.pages.outputs.base_url }}/"
8080
8181
- name: Upload artifact
8282
uses: actions/upload-pages-artifact@v3

.github/workflows/publish.yaml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343
steps:
4444
- name: Checkout repository
45-
uses: actions/checkout@v4
45+
uses: actions/checkout@v5
4646

4747
- name: Setup Docker Buildx
4848
uses: docker/setup-buildx-action@v3
@@ -92,7 +92,7 @@ jobs:
9292

9393
steps:
9494
- name: Checkout repository
95-
uses: actions/checkout@v4
95+
uses: actions/checkout@v5
9696

9797
- name: Setup regctl
9898
uses: regclient/actions/regctl-installer@main
@@ -138,10 +138,10 @@ jobs:
138138
echo "chart_directory=$chart_directory" >> $GITHUB_OUTPUT
139139
140140
- name: Checkout repository
141-
uses: actions/checkout@v4
141+
uses: actions/checkout@v5
142142

143143
- name: Checkout chart repository
144-
uses: actions/checkout@v4
144+
uses: actions/checkout@v5
145145
with:
146146
repository: ${{ steps.prepare.outputs.chart_repository }}
147147
path: chart-repository
@@ -220,4 +220,3 @@ jobs:
220220
ref: main
221221
token: ${{ secrets.WORKFLOW_USER_GH_TOKEN }}
222222
inputs: '{ "version-bump": "${{ steps.update.outputs.version_bump }}" }'
223-

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
fi
4949
5050
- name: Checkout repository
51-
uses: actions/checkout@v4
51+
uses: actions/checkout@v5
5252
with:
5353
token: ${{ secrets.WORKFLOW_USER_GH_TOKEN }}
5454
fetch-depth: 0

0 commit comments

Comments
 (0)