Skip to content

Commit ec4af9b

Browse files
Update actions/checkout action to v6
1 parent 7f88624 commit ec4af9b

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
running-workflow-name: 'Verify'
2424
repo-token: ${{ secrets.GITHUB_TOKEN }}
2525
allowed-conclusions: success
26-
- uses: actions/checkout@v5
26+
- uses: actions/checkout@v6
2727
- uses: gradle/actions/wrapper-validation@v5
2828
- name: Build Image
2929
run: docker build . --build-arg GITHUB_ACTIONS=true --build-arg GITHUB_REF_TYPE=${{ github.ref_type }} --build-arg GITHUB_REF_NAME=${{ github.ref_name }} --build-arg GITHUB_SHA=${{ github.sha }} -f docker/Dockerfile -t ghcr.io/rainbowdashlabs/reputation-bot:${{ github.sha }}

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
deploy:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v5
11+
- uses: actions/checkout@v6
1212
- uses: actions/setup-python@v6
1313
with:
1414
python-version: 3.14

.github/workflows/translate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
outputs:
1515
should_run: ${{ steps.check_message.outputs.should_run }}
1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818
with:
1919
fetch-depth: 2 # Fetch the previous commit
2020

@@ -34,7 +34,7 @@ jobs:
3434
runs-on: ubuntu-latest
3535

3636
steps:
37-
- uses: actions/checkout@v5
37+
- uses: actions/checkout@v6
3838
with:
3939
token: ${{ secrets.GITHUB_TOKEN }}
4040

.github/workflows/verify.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
name: Gradle build
99

1010
steps:
11-
- uses: actions/checkout@v5
11+
- uses: actions/checkout@v6
1212
- name: Set up JDK 21
1313
uses: actions/setup-java@v5
1414
with:
@@ -27,7 +27,7 @@ jobs:
2727
name: Docker build
2828

2929
steps:
30-
- uses: actions/checkout@v5
30+
- uses: actions/checkout@v6
3131
- name: Build as Docker image
3232
run: docker build . -f docker/Dockerfile
3333

@@ -36,7 +36,7 @@ jobs:
3636
name: Encoding check
3737

3838
steps:
39-
- uses: actions/checkout@v5
39+
- uses: actions/checkout@v6
4040
- name: Remove allowed us-ascii files before check
4141
run: rm src/main/resources/locale.properties src/main/resources/locale_en_US.properties # This needs improvement
4242
- name: Check UTF-8 for resource bundles
@@ -49,7 +49,7 @@ jobs:
4949
name: Docs build
5050

5151
steps:
52-
- uses: actions/checkout@v5
52+
- uses: actions/checkout@v6
5353
- uses: actions/setup-python@v6
5454
with:
5555
python-version: 3.14

0 commit comments

Comments
 (0)