Skip to content
Merged
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
14 changes: 7 additions & 7 deletions .github/workflows/packaging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
name: Containers
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3
with:
Expand All @@ -39,8 +39,8 @@ jobs:
outputs:
generated-semver: ${{ steps.semantic-version.outputs.generated-semver }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
- name: Install jq
run: |
sudo apt-get install --yes jq
Expand Down Expand Up @@ -73,10 +73,10 @@ jobs:
if: github.event_name == 'pull_request'
needs: [containers, helm]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Cache Sample Data (Restore)
id: cache-sample-data-restore
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: ${{ github.workspace }}/cache/ref-config
key: ${{ runner.os }}-sample-data
Expand All @@ -89,7 +89,7 @@ jobs:
with:
mount-path: '${{ github.workspace }}/cache/ref-config:/cache/ref-config'
- name: Set up Helm
uses: azure/setup-helm@v4.3.0
uses: azure/setup-helm@v4.3.1
- name: Install Chart
run: |
helm install test oci://ghcr.io/climate-ref/charts/ref \
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
kubectl exec deployment/test-ref-orchestrator -- ref datasets fetch-data --registry sample-data --output-directory /ref/sample-data

- name: Cache Sample Data (Save)
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: ${{ github.workspace }}/cache/ref-config
key: ${{ runner.os }}-sample-data
Expand Down
Loading