Skip to content

Commit 4aae208

Browse files
committed
Fix CI deprecation warnings in GitHub Actions workflows
- Replace julia-actions/julia-buildpkg@latest with @v1.7.0 in Downstream.yml - Update julia-actions/julia-buildpkg from @v1 to @v1.7.0 (latest) in Downgrade.yml - Update julia-actions/julia-runtest from @v1 to @v1.11.2 (latest) in Downgrade.yml These changes address deprecated @latest tag usage and update actions to their most recent stable versions. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 51ff7a1 commit 4aae208

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/Downgrade.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ jobs:
2828
# if: ${{ matrix.version == '1.6' }}
2929
with:
3030
skip: Pkg,TOML
31-
- uses: julia-actions/julia-buildpkg@v1
32-
- uses: julia-actions/julia-runtest@v1
31+
- uses: julia-actions/julia-buildpkg@v1.7.0
32+
- uses: julia-actions/julia-runtest@v1.11.2
3333
with:
3434
ALLOW_RERESOLVE: false
3535
env:

.github/workflows/Downstream.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
with:
2929
version: ${{ matrix.julia-version }}
3030
arch: x64
31-
- uses: julia-actions/julia-buildpkg@latest
31+
- uses: julia-actions/julia-buildpkg@v1.7.0
3232
- name: Clone Downstream
3333
uses: actions/checkout@v4
3434
with:

0 commit comments

Comments
 (0)