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
2 changes: 1 addition & 1 deletion .github/workflows/merge_to_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
run: make build
shell: bash
- name: "Upload Build"
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: fastly-cli-build-${{ matrix.platform }}-${{ github.sha }}
path: fastly
8 changes: 4 additions & 4 deletions .github/workflows/pr_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: "Generate static app config"
run: make config
- name: "Config Artifact"
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: config-artifact-${{ github.sha }}
path: pkg/config/config.toml
Expand All @@ -50,7 +50,7 @@ jobs:
run: make mod-download
shell: bash
- name: "Config Artifact"
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: config-artifact-${{ github.sha }}
- name: "Move Config"
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: "Config Artifact"
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: config-artifact-${{ github.sha }}
- name: "Move Config"
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:
with:
fetch-depth: 0
- name: Download config artifact
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: config-artifact-${{ github.sha }}
path: pkg/config
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
### Bug fixes:

### Dependencies:
- build(deps): `actions/upload-artifact` from 5 to 6 ([#1603](https://github.com/fastly/cli/pull/1603))
- build(deps): `actions/download-artifact` from 6 to 7 ([#1603](https://github.com/fastly/cli/pull/1603))
- build(deps): `golang.org/x/term` from 0.37.0 to 0.38.0 ([#1602](https://github.com/fastly/cli/pull/1602))
- build(deps): `golang.org/x/crypto` from 0.45.0 to 0.46.0 ([#1602](https://github.com/fastly/cli/pull/1602))
- build(deps): `golang.org/x/mod` from 0.30.0 to 0.31.0 ([#1602](https://github.com/fastly/cli/pull/1602))
Expand Down