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
6 changes: 3 additions & 3 deletions .github/workflows/build-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:

- name: Download artifact from workflow
if: ${{ inputs.is_workflow_call }}
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand All @@ -68,9 +68,9 @@ jobs:
devolutions/prux:${{ inputs.tag }}

- name: Install Cosign
uses: sigstore/cosign-installer@v3.8.0
uses: sigstore/cosign-installer@v3.10.1
with:
cosign-release: v2.4.1
cosign-release: v2.6.1

- name: Sign image with Cosign
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/cargo-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,20 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
token: ${{ secrets.DEVOLUTIONSBOT_TOKEN }}
submodules: true

- name: Check out Devolutions/actions
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: Devolutions/actions
ref: v1
token: ${{ secrets.DEVOLUTIONSBOT_TOKEN }}
path: ./.github/workflows

- uses: actions/cache@v4
- uses: actions/cache@v5
with:
path: |
~/.cargo/**
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/shared.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

steps:
- name: Check out ${{ github.repository }}
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ inputs.ref }}

Expand All @@ -33,7 +33,7 @@ jobs:
echo "commit-sha=$sha" >> $GITHUB_OUTPUT

- name: Archive dockerfile
uses: actions/upload-artifact@v4.3.6
uses: actions/upload-artifact@v7
with:
name: dockerfile
path: Dockerfile.GH
Expand All @@ -43,11 +43,11 @@ jobs:

steps:
- name: Check out ${{ github.repository }}
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ inputs.ref }}

- uses: actions/cache@v4
- uses: actions/cache@v5
with:
path: |
~/.cargo/**
Expand All @@ -58,7 +58,7 @@ jobs:
run: cargo build --bin prux --release

- name: Archive prux
uses: actions/upload-artifact@v4.3.6
uses: actions/upload-artifact@v7
with:
name: prux
path: |
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:

- name: Download all workflow run artifacts
if: ${{ steps.check-assets.outputs.all_assets_exist == 'false' }}
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8

- name: Compress artifacts
if: ${{ steps.check-assets.outputs.all_assets_exist == 'false' }}
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:

steps:
- name: Check out Devolutions/actions
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: Devolutions/actions
ref: v1
Expand Down
Loading