Skip to content

Commit b1166ce

Browse files
Bump the github-actions group across 1 directory with 4 updates
Bumps the github-actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/cache](https://github.com/actions/cache) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) Updates `actions/upload-artifact` from 4 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v6) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) Updates `actions/download-artifact` from 5 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 10dba91 commit b1166ce

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

.github/workflows/build.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ${{ matrix.os }}
2121
name: Test jfuse-linux-${{ matrix.arch }}
2222
steps:
23-
- uses: actions/checkout@v5
23+
- uses: actions/checkout@v6
2424
- uses: actions/setup-java@v5
2525
with:
2626
java-version: ${{ env.JAVA_VERSION }}
@@ -32,7 +32,7 @@ jobs:
3232
sudo apt-get install fuse3 libfuse3-dev
3333
- name: Maven build
3434
run: mvn -B verify -Dfuse.lib.path="/usr/lib/${{ matrix.arch }}-linux-gnu/libfuse3.so.3" --no-transfer-progress
35-
- uses: actions/upload-artifact@v4
35+
- uses: actions/upload-artifact@v6
3636
with:
3737
name: coverage-linux-${{ matrix.arch }}
3838
path: jfuse-tests/target/site/jacoco-aggregate/jacoco.xml
@@ -42,7 +42,7 @@ jobs:
4242
name: Test jfuse-mac
4343
runs-on: macos-latest
4444
steps:
45-
- uses: actions/checkout@v5
45+
- uses: actions/checkout@v6
4646
- uses: actions/setup-java@v5
4747
with:
4848
java-version: ${{ env.JAVA_VERSION }}
@@ -55,7 +55,7 @@ jobs:
5555
brew install fuse-t
5656
- name: Maven build
5757
run: mvn -B verify -Dfuse.lib.path="/usr/local/lib/libfuse-t.dylib" --no-transfer-progress
58-
- uses: actions/upload-artifact@v4
58+
- uses: actions/upload-artifact@v6
5959
with:
6060
name: coverage-mac
6161
path: jfuse-tests/target/site/jacoco-aggregate/jacoco.xml
@@ -65,7 +65,7 @@ jobs:
6565
name: Test jfuse-win
6666
runs-on: windows-latest
6767
steps:
68-
- uses: actions/checkout@v5
68+
- uses: actions/checkout@v6
6969
- uses: actions/setup-java@v5
7070
with:
7171
java-version: ${{ env.JAVA_VERSION }}
@@ -76,7 +76,7 @@ jobs:
7676
- name: Maven build
7777
shell: bash # surprise, running maven in pwsh is crappy, see https://stackoverflow.com/q/6347985/4014509
7878
run: mvn -B verify -Dfuse.lib.path="C:\Program Files (x86)\WinFsp\bin\winfsp-x64.dll" --no-transfer-progress
79-
- uses: actions/upload-artifact@v4
79+
- uses: actions/upload-artifact@v6
8080
with:
8181
name: coverage-win
8282
path: jfuse-tests/target/site/jacoco-aggregate/jacoco.xml
@@ -87,7 +87,7 @@ jobs:
8787
needs: [linux, mac, win]
8888
runs-on: ubuntu-latest
8989
steps:
90-
- uses: actions/checkout@v5
90+
- uses: actions/checkout@v6
9191
with:
9292
fetch-depth: 0
9393
- uses: actions/setup-java@v5
@@ -96,24 +96,24 @@ jobs:
9696
distribution: ${{ env.JAVA_DIST }}
9797
cache: 'maven'
9898
- name: Cache SonarCloud packages
99-
uses: actions/cache@v4
99+
uses: actions/cache@v5
100100
with:
101101
path: ~/.sonar/cache
102102
key: ${{ runner.os }}-sonar
103103
restore-keys: ${{ runner.os }}-sonar
104-
- uses: actions/download-artifact@v5
104+
- uses: actions/download-artifact@v7
105105
with:
106106
name: coverage-linux-x86_64
107107
path: coverage/linux-x86_64
108-
- uses: actions/download-artifact@v5
108+
- uses: actions/download-artifact@v7
109109
with:
110110
name: coverage-linux-aarch64
111111
path: coverage/linux-aarch64
112-
- uses: actions/download-artifact@v5
112+
- uses: actions/download-artifact@v7
113113
with:
114114
name: coverage-mac
115115
path: coverage/mac
116-
- uses: actions/download-artifact@v5
116+
- uses: actions/download-artifact@v7
117117
with:
118118
name: coverage-win
119119
path: coverage/win

.github/workflows/publish-central.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
if: startsWith(github.ref, 'refs/tags/') # only allow publishing tagged versions
1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616
- uses: actions/setup-java@v5
1717
with:
1818
java-version: ${{ env.JAVA_VERSION }}

.github/workflows/publish-github.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
if: startsWith(github.ref, 'refs/tags/') # only allow publishing tagged versions
1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616
- uses: actions/setup-java@v5
1717
with:
1818
java-version: ${{ env.JAVA_VERSION }}

0 commit comments

Comments
 (0)