Skip to content

Commit 2be9067

Browse files
committed
Update GitHub Actions to latest versions.
1 parent 9ed9444 commit 2be9067

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/build-and-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
runs-on: ${{ matrix.os }}
3737

3838
steps:
39-
- uses: actions/checkout@v4
39+
- uses: actions/checkout@v6
4040
with:
4141
fetch-depth: 0 # Full history for git-tag-based versioning
4242

@@ -67,7 +67,7 @@ jobs:
6767

6868
- name: Upload artifacts (Windows)
6969
if: runner.os == 'Windows'
70-
uses: actions/upload-artifact@v4
70+
uses: actions/upload-artifact@v7
7171
with:
7272
name: ${{ matrix.artifact-name }}
7373
path: |
@@ -77,7 +77,7 @@ jobs:
7777
7878
- name: Upload artifacts (Linux)
7979
if: runner.os == 'Linux'
80-
uses: actions/upload-artifact@v4
80+
uses: actions/upload-artifact@v7
8181
with:
8282
name: ${{ matrix.artifact-name }}
8383
path: build/libOdbcFb.so

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,14 @@ jobs:
6060
suffix: win-arm64
6161

6262
steps:
63-
- uses: actions/checkout@v4
63+
- uses: actions/checkout@v6
6464
with:
6565
sparse-checkout: |
6666
installer
6767
README.md
6868
6969
- name: Download Windows artifacts
70-
uses: actions/download-artifact@v4
70+
uses: actions/download-artifact@v8
7171
with:
7272
name: ${{ matrix.artifact }}
7373
path: artifacts
@@ -118,12 +118,12 @@ jobs:
118118
runs-on: ubuntu-latest
119119

120120
steps:
121-
- uses: actions/checkout@v4
121+
- uses: actions/checkout@v6
122122
with:
123123
sparse-checkout: README.md
124124

125125
- name: Download Linux artifacts
126-
uses: actions/download-artifact@v4
126+
uses: actions/download-artifact@v8
127127
with:
128128
name: linux-x64-binaries
129129
path: artifacts
@@ -160,12 +160,12 @@ jobs:
160160
runs-on: ubuntu-latest
161161

162162
steps:
163-
- uses: actions/checkout@v4
163+
- uses: actions/checkout@v6
164164
with:
165165
sparse-checkout: README.md
166166

167167
- name: Download Linux arm64 artifacts
168-
uses: actions/download-artifact@v4
168+
uses: actions/download-artifact@v8
169169
with:
170170
name: linux-arm64-binaries
171171
path: artifacts

0 commit comments

Comments
 (0)