Skip to content
Merged
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/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
permissions:
contents: read
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0
- uses: conda-incubator/setup-miniconda@v4
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
# needs write permission to push the docs to gh-pages
contents: write
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0
ref: gh-pages
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
ID: ${{ steps.create_release.outputs.id }}
VERSION: ${{ env.VERSION }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Get version (on tag)
if: startsWith(github.ref, 'refs/tags/')
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
- name: Create Release
if: startsWith(github.ref, 'refs/tags/')
id: create_release
uses: softprops/action-gh-release@b4309332981a82ec1c5618f44dd2e27cc8bfbfda
uses: softprops/action-gh-release@718ea10b132b3b2eba29c1007bb80653f286566b
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions
with:
Expand Down Expand Up @@ -185,7 +185,7 @@ jobs:
RSCIIO_CACHE_POOCH_LABEL: ${{ needs.download_rsciio_test_data.outputs.VERSION }}

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: conda-incubator/setup-miniconda@v4
with:
Expand Down Expand Up @@ -422,7 +422,7 @@ jobs:

- name: Upload Release Asset
if: startsWith(github.ref, 'refs/tags/')
uses: softprops/action-gh-release@b4309332981a82ec1c5618f44dd2e27cc8bfbfda
uses: softprops/action-gh-release@718ea10b132b3b2eba29c1007bb80653f286566b
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand All @@ -446,15 +446,15 @@ jobs:
shell: cmd

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: ssciwr/pooch-cache@v1
with:
name: pooch
fail-on-cache-miss: true

- name: Cache WinPython data
uses: actions/cache@v5
uses: actions/cache@v6
env:
# Increase this value to reset cache
CACHE_NUMBER: 0
Expand Down Expand Up @@ -653,7 +653,7 @@ jobs:

- name: Upload Release Asset
if: startsWith(github.ref, 'refs/tags/')
uses: softprops/action-gh-release@b4309332981a82ec1c5618f44dd2e27cc8bfbfda
uses: softprops/action-gh-release@718ea10b132b3b2eba29c1007bb80653f286566b
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand All @@ -668,7 +668,7 @@ jobs:
steps:
- name: Finalise release
# Publish draft release
uses: softprops/action-gh-release@b4309332981a82ec1c5618f44dd2e27cc8bfbfda
uses: softprops/action-gh-release@718ea10b132b3b2eba29c1007bb80653f286566b
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down
Loading