Skip to content

Commit f1375fe

Browse files
committed
Align workflow action versions
1 parent 5208da2 commit f1375fe

2 files changed

Lines changed: 7 additions & 8 deletions

File tree

.github/workflows/nightly.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
name: Offline test suite
1717
steps:
1818
- name: Checkout repo
19-
uses: actions/checkout@v7
19+
uses: actions/checkout@v7.0.1
2020
- name: Build the fixture and run the suite
2121
# The real dumps are not in the repository, so CI runs against the synthetic flash
2222
# only. That still covers the decoder, the backup round trip, every malformed-file
@@ -30,7 +30,7 @@ jobs:
3030
name: Build through documented wrapper
3131
steps:
3232
- name: Checkout repo
33-
uses: actions/checkout@v7
33+
uses: actions/checkout@v7.0.1
3434
- name: Build with build.sh
3535
run: ./build.sh build
3636
- name: Fail on any compiler warning
@@ -50,7 +50,7 @@ jobs:
5050
name: Build with BlocksDS toolchain using official Docker image
5151
steps:
5252
- name: Checkout repo
53-
uses: actions/checkout@v7
53+
uses: actions/checkout@v7.0.1
5454
- name: Build app
5555
id: build
5656
# The Makefile builds the output name from the kind and the commit, so that is all this

.github/workflows/release.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
name: Build with BlocksDS toolchain using official Docker image
1717
steps:
1818
- name: Checkout repo
19-
uses: actions/checkout@v7
19+
uses: actions/checkout@v7.0.1
2020
- name: Build app
2121
id: build
2222
# ROM is overridden to the bare name so every release carries an identically-named
@@ -53,7 +53,7 @@ jobs:
5353
fi
5454
echo "no warnings"
5555
- name: Keep the ROM for the verify job
56-
uses: actions/upload-artifact@v7
56+
uses: actions/upload-artifact@v7.0.1
5757
with:
5858
name: release-rom
5959
path: dsi_wifi_manager.dsi
@@ -72,7 +72,7 @@ jobs:
7272
name: Verify the ROM and attach it to the release
7373
steps:
7474
- name: Fetch the ROM
75-
uses: actions/download-artifact@v8
75+
uses: actions/download-artifact@v8.0.1
7676
with:
7777
name: release-rom
7878
- name: Check the ROM really is a Release DSi build
@@ -108,7 +108,6 @@ jobs:
108108
print("::error::" + "; ".join(bad)); sys.exit(1)
109109
EOF
110110
- name: Upload dsi_wifi_manager.dsi
111-
uses: AButler/upload-release-assets@v4.0.0
111+
uses: softprops/action-gh-release@v3.0.2
112112
with:
113113
files: dsi_wifi_manager.dsi
114-
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)