Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
arch:
- x64
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
Expand All @@ -54,7 +54,7 @@ jobs:
- run: chmod 400 Project.toml
- run: chmod 400 Manifest.toml
- name: Cache artifacts
uses: actions/cache@v4
uses: actions/cache@v5
env:
cache-name: cache-artifacts
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/multiple_prs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
# - '1.13'
- 'nightly'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
Expand All @@ -50,7 +50,7 @@ jobs:
echo "The manifest file does not exist, so I will create a new manifest from scratch."
fi
- name: Cache artifacts
uses: actions/cache@v4
uses: actions/cache@v5
env:
cache-name: cache-artifacts
with:
Expand All @@ -71,7 +71,7 @@ jobs:
- run: chmod 600 Project.toml
- run: chmod 600 Manifest.*.toml
- run: git status
- uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8
- uses: peter-evans/create-pull-request@98357b18bf14b5342f975ff684046ec3b2a07725 # v8.0.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
delete-branch: true
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/single_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
# - '1.13'
- 'nightly'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
Expand All @@ -50,7 +50,7 @@ jobs:
echo "The manifest file does not exist, so I will create a new manifest from scratch."
fi
- name: Cache artifacts
uses: actions/cache@v4
uses: actions/cache@v5
env:
cache-name: cache-artifacts
with:
Expand All @@ -68,7 +68,7 @@ jobs:
- run: julia --color=yes --project=@. -e 'import Pkg; Pkg.update()'
- run: mv Manifest.toml Manifest.${{ steps.manifest_version.outputs.manifest_version }}.toml
- run: git status
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v6
with:
name: manifest_file_for_${{ steps.manifest_version.outputs.manifest_version }}
path: Manifest.${{ steps.manifest_version.outputs.manifest_version }}.toml
Expand All @@ -80,11 +80,11 @@ jobs:
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- run: rm -rf /tmp/manifest_updater
- run: mkdir /tmp/manifest_updater
- run: chmod 700 /tmp/manifest_updater
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v7
with:
path: /tmp/manifest_updater/download_artifacts
- run: mv /tmp/manifest_updater/download_artifacts/manifest_file_for_*/Manifest.*.toml .
Expand All @@ -93,7 +93,7 @@ jobs:
- run: chmod 600 Project.toml
- run: chmod 600 Manifest.*.toml
- run: git status
- uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8
- uses: peter-evans/create-pull-request@98357b18bf14b5342f975ff684046ec3b2a07725 # v8.0.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
delete-branch: true
Expand Down
Loading