Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
continue-on-error: true
steps:
- uses: actions/setup-node@v6
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- run: npx -y prettier --check ./
# Uncomment the line below to include shell script linting
# - run: npx -y shellcheck ./.github/scripts/*.sh ./src/scripts/*.sh
Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
- image: valheim
push: ${{ contains(github.event.pull_request.labels.*.name, 'canary') }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

steps:
# Check out the repository
- uses: actions/checkout@v6
- uses: actions/checkout@v7

# Generate Docker metadata
- name: Docker meta
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
steps:
# Check out the repository
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0
token: "${{ secrets.GH_TOKEN }}"
Expand Down
Loading