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/android-ech.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
# The suite's XML, for the status page, whatever colour the job ended up.
- name: Upload Test Results
if: always()
uses: actions/upload-artifact@v4.6.2
uses: actions/upload-artifact@v7.0.1
with:
name: android-ech-test-results-${{ inputs.okhttpVersion || 'pinned-snapshot' }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/conscrypt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
# fetched back — including on a pull request, where it exercises the fallback path.
- name: Upload the build
if: always() && (steps.existing.outputs.exists == 'false' || inputs.force)
uses: actions/upload-artifact@v4.6.2
uses: actions/upload-artifact@v7.0.1
with:
name: conscrypt-${{ steps.pin.outputs.tag }}
path: conscrypt/build/dist/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/containers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ jobs:
# the build. The status page reads results from here, not from the job's colour.
- name: Upload Test Results
if: always()
uses: actions/upload-artifact@v4.6.2
uses: actions/upload-artifact@v7.0.1
with:
name: container-test-results-${{ matrix.okhttpVersion || 'pinned' }}
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/network.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ jobs:
# results — the status page reads them from here, and shows them as findings.
- name: Upload Test Results
if: always()
uses: actions/upload-artifact@v4.6.2
uses: actions/upload-artifact@v7.0.1
with:
name: network-test-results-${{ matrix.okhttpVersion || 'pinned' }}
path: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
# failed", and nothing is ever deployed. It is a no-op once the site exists.
- name: Configure Pages
id: pages
uses: actions/configure-pages@v5.0.0
uses: actions/configure-pages@v6.0.0
with:
enablement: true

Expand Down Expand Up @@ -156,10 +156,10 @@ jobs:
echo "collected $(python3 -c 'import json,sys; print(len(json.load(open("site/data/issues.json"))))') open issue(s)"

- name: Upload Pages Artifact
uses: actions/upload-pages-artifact@v4.0.0
uses: actions/upload-pages-artifact@v5.0.0
with:
path: site

- name: Deploy
id: deploy
uses: actions/deploy-pages@v4.0.5
uses: actions/deploy-pages@v5.0.0
4 changes: 2 additions & 2 deletions .github/workflows/test-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
uses: actions/checkout@v7.0.1

- name: Configure Go
uses: actions/setup-go@v5.6.0
uses: actions/setup-go@v7.0.0
with:
go-version: '1.24.13'
cache-dependency-path: test-server/go.mod
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:

- name: Log in to GHCR
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
uses: docker/login-action@v3.7.0
uses: docker/login-action@v4.6.0
with:
registry: ghcr.io
username: ${{ github.actor }}
Expand Down