diff --git a/.github/workflows/merge_to_main.yml b/.github/workflows/merge_to_main.yml index b0a827380..8d143b422 100644 --- a/.github/workflows/merge_to_main.yml +++ b/.github/workflows/merge_to_main.yml @@ -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 diff --git a/.github/workflows/pr_test.yml b/.github/workflows/pr_test.yml index 125e89de3..6dd5fc47a 100644 --- a/.github/workflows/pr_test.yml +++ b/.github/workflows/pr_test.yml @@ -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 @@ -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" @@ -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" @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 9be7faad1..acda8e331 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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))