Skip to content

Commit 8f4081a

Browse files
authored
Cleaning up action versions (#828)
1 parent 3597789 commit 8f4081a

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ jobs:
1717
- name: Checkout
1818
uses: actions/checkout@v5
1919
- name: Set up Node.js
20-
uses: actions/setup-node@v4
20+
uses: actions/setup-node@v5
2121
with:
2222
node-version: "22"
2323
cache: "npm"
2424
cache-dependency-path: "**/package-lock.json"
2525
- name: Set up Golang
26-
uses: actions/setup-go@v5.5.0
26+
uses: actions/setup-go@v5
2727
with:
2828
go-version: "1.24.4"
2929
- name: Build frontend

.github/workflows/golangci-lint.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@ jobs:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- name: Checkout repository
25-
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v4.2.2
25+
uses: actions/checkout@v5
2626
- name: Install Go
27-
uses: actions/setup-go@fa96338abe5531f6e34c5cc0bbe28c1a533d5505 # v4.2.1
27+
uses: actions/setup-go@v5
2828
with:
29-
go-version: 1.24.4
29+
go-version: oldstable
3030
- name: Create empty resource directory
3131
run: |
3232
mkdir -p static && touch static/.gitkeep
3333
- name: Lint
34-
uses: golangci/golangci-lint-action@1481404843c368bc19ca9406f87d6e0fc97bdcfd # v7.0.0
34+
uses: golangci/golangci-lint-action@v8
3535
with:
3636
args: --verbose
37-
version: v2.0.2
37+
version: v2.1

.github/workflows/ui-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Checkout repository
2020
uses: actions/checkout@v5
2121
- name: Set up Node.js
22-
uses: actions/setup-node@v4
22+
uses: actions/setup-node@v5
2323
with:
2424
node-version: "22"
2525
cache: "npm"

0 commit comments

Comments
 (0)