Skip to content
Merged
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/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ jobs:
runs-on: windows-2022
steps:
- name: Docker Login
uses: docker/login-action@v1
uses: docker/login-action@v3
Comment on lines 9 to +11

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Declining β€” this is valid YAML. Block sequence entries may sit at the same indentation column as their parent mapping key (a "zero-indented" block sequence); it parses identically to the extra-indented form. This workflow has parsed and run in exactly this form for years, and actionlint β€” which uses a real YAML parser β€” passes it cleanly.

with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build image
run: docker build -t compilerexplorer/windows:latest .
- name: Push to Docker Hub
Expand Down