Skip to content

Commit 6145c50

Browse files
committed
bump actions
1 parent 606a661 commit 6145c50

3 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/nix-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
name: Build
2323
runs-on: ubuntu-24.04-arm
2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v6
2626
- uses: DeterminateSystems/nix-installer-action@main
2727
- uses: DeterminateSystems/magic-nix-cache-action@main
2828
- uses: DeterminateSystems/flake-checker-action@main

.github/workflows/release.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ jobs:
4545
KEYCHAIN_PASSWORD: ${{ secrets.KEYCHAIN_PASSWORD }}
4646
MACOS_NOTARY_KEYCHAIN_PROFILE: ${{ secrets.MACOS_NOTARY_KEYCHAIN_PROFILE }}
4747
steps:
48-
- uses: actions/checkout@v4
48+
- uses: actions/checkout@v6
4949
with:
5050
fetch-depth: 0
51-
- uses: actions/cache@v4
51+
- uses: actions/cache@v5
5252
with:
5353
path: dist/${{ matrix.cache-subdir }}
5454
key: goreleaser-${{ matrix.os }}-${{ github.sha }}
@@ -96,13 +96,13 @@ jobs:
9696
echo "KEYCHAIN_PATH=$KEYCHAIN_PATH" >>$GITHUB_ENV
9797
9898
- if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') && steps.cache-check.outputs.cache-hit != 'true'
99-
uses: goreleaser/goreleaser-action@v6.3.0
99+
uses: goreleaser/goreleaser-action@v7
100100
with:
101101
distribution: goreleaser-pro
102102
version: nightly
103103
args: release --clean --split ${{ matrix._ids }} --skip=winget
104104
- if: (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && !startsWith(github.ref, 'refs/tags/v'))) && steps.cache-check.outputs.cache-hit != 'true'
105-
uses: goreleaser/goreleaser-action@v6.3.0
105+
uses: goreleaser/goreleaser-action@v7
106106
with:
107107
distribution: goreleaser-pro
108108
version: nightly
@@ -113,20 +113,20 @@ jobs:
113113
needs: build
114114
runs-on: ubuntu-latest
115115
steps:
116-
- uses: actions/checkout@v4
116+
- uses: actions/checkout@v6
117117
with:
118118
fetch-depth: 0
119-
- uses: actions/cache@v4
119+
- uses: actions/cache@v5
120120
with:
121121
key: goreleaser-macos-latest-${{ github.sha }}
122122
path: dist/darwin
123123
fail-on-cache-miss: true
124-
- uses: actions/cache@v4
124+
- uses: actions/cache@v5
125125
with:
126126
key: goreleaser-windows-latest-${{ github.sha }}
127127
path: dist/windows
128128
fail-on-cache-miss: true
129-
- uses: actions/cache@v4
129+
- uses: actions/cache@v5
130130
with:
131131
key: goreleaser-ubuntu-22.04-arm-${{ github.sha }}
132132
path: dist/linux
@@ -137,12 +137,12 @@ jobs:
137137
mv dist/linux dist/linux-arm64
138138
# update paths in artifacts.json (dist/linux -> dist/linux-arm64)
139139
sed -i 's/dist\/linux/dist\/linux-arm64/g' dist/linux-arm64/artifacts.json
140-
- uses: actions/cache@v4
140+
- uses: actions/cache@v5
141141
with:
142142
key: goreleaser-ubuntu-22.04-${{ github.sha }}
143143
path: dist/linux
144144
fail-on-cache-miss: true
145-
- uses: goreleaser/goreleaser-action@v6.3.0
145+
- uses: goreleaser/goreleaser-action@v7
146146
with:
147147
distribution: goreleaser-pro
148148
version: nightly

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
runs-on: ${{ matrix.os }}
3232
steps:
33-
- uses: actions/checkout@v3
33+
- uses: actions/checkout@v6
3434
- uses: Swatinem/rust-cache@v2
3535
- run: rustup toolchain install stable --profile minimal
3636
- run: rustup component add rustfmt clippy

0 commit comments

Comments
 (0)