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/bump.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ jobs:
CI_COMMIT_EMAIL: "ci-runner@climate-ref.invalid"
steps:
- name: Check out repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0
token: ${{ secrets.PAT }}

- name: Install uv
uses: astral-sh/setup-uv@v6
uses: astral-sh/setup-uv@v8.0.0
with:
enable-cache: true

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]'
steps:
- name: Check out repository
uses: actions/checkout@v4
uses: actions/checkout@v6
- name: Get changed changelog files
id: changed-changelog-files
uses: tj-actions/changed-files@v47
Expand All @@ -37,7 +37,7 @@ jobs:
- uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version: '22'
cache: 'npm'
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
- uses: actions/checkout@v4

- name: Install uv
uses: astral-sh/setup-uv@v6
uses: astral-sh/setup-uv@v8.0.0
with:
version: ${{ inputs.uv-version }}
python-version: ${{ inputs.python-version }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/containers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ jobs:
name: climate-ref-frontend
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3
- uses: actions/checkout@v6
- uses: docker/setup-buildx-action@v4
- uses: docker/login-action@v4
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/metadata-action@v5
- uses: docker/metadata-action@v6
id: metadata
with:
images: ghcr.io/${{ github.repository_owner }}/climate-ref-frontend
Expand All @@ -36,7 +36,7 @@ jobs:
type=ref,event=tag
# set latest tag for default branch
type=raw,value=main,enable={{is_default_branch}}
- uses: docker/build-push-action@v4
- uses: docker/build-push-action@v7
id: push
with:
cache-from: type=gha
Expand All @@ -48,7 +48,7 @@ jobs:
tags: ${{ steps.metadata.outputs.tags }}
labels: ${{ steps.metadata.outputs.labels }}
- name: Attest to climate-ref-frontend image
uses: actions/attest-build-provenance@v2
uses: actions/attest-build-provenance@v4
if: ${{ ! github.event.pull_request.head.repo.fork }}
with:
subject-name: ghcr.io/${{ github.repository_owner }}/climate-ref-frontend
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Create Release Draft
uses: softprops/action-gh-release@v2
Expand Down
1 change: 1 addition & 0 deletions changelog/27.trivial.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Updated GitHub Actions to Node.js 24 compatible versions ahead of the Node.js 20 deprecation.
Loading