Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/actionlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: actionlint with reviewdog
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: actionlint
uses: reviewdog/action-actionlint@v1.37.0
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/build-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
PAPER_COMMIT: ${{ steps.paper-commit.outputs.PAPER_COMMIT }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Get Paper commit
id: paper-commit
Expand All @@ -49,7 +49,7 @@

- name: clone Paper
if: steps.cache-paperclip.outputs.cache-hit != 'true'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: PaperMC/Paper
path: Paper
Expand Down Expand Up @@ -85,11 +85,11 @@
matrix: ${{ steps.set-matrix.outputs.matrix }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set Base Image matrix
id: set-matrix
run: |

Check warning on line 92 in .github/workflows/build-image.yml

View workflow job for this annotation

GitHub Actions / actionlint with reviewdog

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:5:11: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: .github/workflows/build-image.yml:92:9: shellcheck reported issue in this script: SC2086:info:5:11: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 92 in .github/workflows/build-image.yml

View workflow job for this annotation

GitHub Actions / actionlint with reviewdog

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2001:style:2:8: See if you can use ${variable//search/replace} instead [shellcheck] Raw Output: .github/workflows/build-image.yml:92:9: shellcheck reported issue in this script: SC2001:style:2:8: See if you can use ${variable//search/replace} instead [shellcheck]
imgs=$(./utils/java.sh base-img | tr '\n' ' ')
imgs=$(echo "${imgs}" | sed -e 's/ /, /g')
{
Expand All @@ -110,10 +110,10 @@
base_img: ${{ fromJSON(needs.base_img_matrix.outputs.matrix) }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: clone Paper
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: PaperMC/Paper
path: Paper
Expand Down Expand Up @@ -261,7 +261,7 @@
jdk: ["openjdk", "temurin"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-renovate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3

- name: install
Expand Down
Loading