Skip to content

Commit 67f145d

Browse files
committed
Bump a pile of workflow package versions
1 parent e866d9b commit 67f145d

File tree

6 files changed

+16
-25
lines changed

6 files changed

+16
-25
lines changed

.github/workflows/_announce-latest-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
run: echo version=${{ fromJson( steps.version_info.outputs.versionInfo ).version }} >> $GITHUB_OUTPUT
3939

4040
- name: Announce Release
41-
uses: tsickert/discord-webhook@v6.0.0
41+
uses: tsickert/discord-webhook@v7.0.0
4242
with:
4343
webhook-url: ${{ secrets.DISCORD_NIGHTLY_WEBHOOK }}
4444
avatar-url: "https://compactmods.dev/personal-shrinking-device.png"

.github/workflows/_datagen.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
runs-on: ubuntu-22.04
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717

1818
- name: Set up JDK
19-
uses: actions/setup-java@v4
19+
uses: actions/setup-java@v5
2020
with:
2121
distribution: temurin
2222
java-version: 21

.github/workflows/_make-release-jar.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515
runs-on: ubuntu-22.04
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v5
1919
with:
2020
submodules: true
2121

2222
- name: Set up JDK
23-
uses: actions/setup-java@v4
23+
uses: actions/setup-java@v5
2424
with:
2525
distribution: temurin
2626
java-version: 21
@@ -35,13 +35,13 @@ jobs:
3535
path: neoforge-main/src/generated/resources
3636

3737
- name: Pull Compilation Data (Core)
38-
uses: actions/download-artifact@v4
38+
uses: actions/download-artifact@v5
3939
with:
4040
name: build-core
4141
path: core-api/build
4242

4343
- name: Pull Compilation Data (Main)
44-
uses: actions/download-artifact@v4
44+
uses: actions/download-artifact@v5
4545
with:
4646
name: build-main
4747
path: neoforge-main/build

.github/workflows/_publish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515
runs-on: ubuntu-22.04
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v4
18+
uses: actions/checkout@v5
1919
with:
2020
submodules: true
2121

2222
- name: Set up JDK
23-
uses: actions/setup-java@v4
23+
uses: actions/setup-java@v5
2424
with:
2525
distribution: temurin
2626
java-version: 21
@@ -29,19 +29,19 @@ jobs:
2929
uses: gradle/actions/setup-gradle@v4
3030

3131
- name: Pull Built Generated Data
32-
uses: actions/download-artifact@v4
32+
uses: actions/download-artifact@v5
3333
with:
3434
name: generated-data
3535
path: neoforge-main/src/generated/resources
3636

3737
- name: Pull Compilation Data (Core)
38-
uses: actions/download-artifact@v4
38+
uses: actions/download-artifact@v5
3939
with:
4040
name: build-core
4141
path: core-api/build
4242

4343
- name: Pull Compilation Data (Main)
44-
uses: actions/download-artifact@v4
44+
uses: actions/download-artifact@v5
4545
with:
4646
name: build-main
4747
path: neoforge-main/build

.github/workflows/ci-builds.yml

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,7 @@ name: Continuous Integration + Announcement
33
env:
44
GH_PKG_URL: "https://maven.pkg.github.com/${{ github.repository }}"
55

6-
on:
7-
push:
8-
tags-ignore:
9-
- v*
10-
paths:
11-
- "gradle/*.versions.toml"
12-
- "core-api/**"
13-
- "neoforge-datagen/**"
14-
- "neoforge-main/**"
15-
workflow_dispatch:
6+
on: [push, workflow_dispatch]
167

178
jobs:
189
vars:
@@ -67,7 +58,7 @@ jobs:
6758
runs-on: ubuntu-latest
6859
steps:
6960
- name: Create tag
70-
uses: actions/github-script@v7
61+
uses: actions/github-script@v8
7162
with:
7263
script: |
7364
github.rest.git.createRef({

.github/workflows/manual-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
version:
1313
required: true
1414
type: string
15-
default: 'v7.0.0'
15+
default: 'v8.0.0'
1616
run_tests:
1717
required: true
1818
type: boolean
@@ -72,7 +72,7 @@ jobs:
7272
runs-on: ubuntu-latest
7373
steps:
7474
- name: Create tag
75-
uses: actions/github-script@v7
75+
uses: actions/github-script@v8
7676
with:
7777
script: |
7878
github.rest.git.createRef({

0 commit comments

Comments
 (0)